Skip to content

Commit

Permalink
Report "fix for angular 1.5" pull request (ghiden#398)
Browse files Browse the repository at this point in the history
make sure optional attributes are actually optional (`=` --> `=?`)
reference: https://docs.angularjs.org/error/$compile/nonassign
  • Loading branch information
elkami12 committed Aug 11, 2016
1 parent f5be208 commit 0132d7b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions angucomplete-alt.js
Original file line number Diff line number Diff line change
Expand Up @@ -783,16 +783,16 @@
require: '^?form',
scope: {
selectedObject: '=',
selectedObjectData: '=',
disableInput: '=',
initialValue: '=',
localData: '=',
selectedObjectData: '=?',
disableInput: '=?',
initialValue: '=?',
localData: '=?',
localSearch: '&',
remoteUrlRequestFormatter: '=',
remoteUrlRequestFormatter: '=?',
remoteUrlRequestWithCredentials: '@',
remoteUrlResponseFormatter: '=',
remoteUrlErrorCallback: '=',
remoteApiHandler: '=',
remoteUrlResponseFormatter: '=?',
remoteUrlErrorCallback: '=?',
remoteApiHandler: '=?',
id: '@',
type: '@',
placeholder: '@',
Expand All @@ -810,9 +810,9 @@
matchClass: '@',
clearSelected: '@',
overrideSuggestions: '@',
fieldRequired: '=',
fieldRequired: '=?',
fieldRequiredClass: '@',
inputChanged: '=',
inputChanged: '=?',
autoMatch: '@',
focusOut: '&',
focusIn: '&',
Expand Down

0 comments on commit 0132d7b

Please sign in to comment.