You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***applyFilter** - string - applies AngularJS $filter on the list before swapping items. Only applicable, if ngRepeat has any filter (such as orderBy, limitTo) associated with it.
43
43
***containment** – string - position/offset. Offset by default. This forces to use jQuery.position() or jQuery.offset() to calculate proper position with respect to parent element or document respectively.
44
44
***deepCopy** - boolean (optional) – If true, makes a deep copy of draggable that looses prototypical inheritance.
45
+
***beforeDrop** – promise (optional) – Ask for confirmation before swapping. Works with both window.confirm and custom popup.
45
46
***data-drag** – boolean – If true, element can be draggable. Disabled otherwise.
46
47
***data-jqyoui-options** – object – should hold all the valid options supported by [jQueryUI Draggable](http://api.jqueryui.com/draggable)
47
48
***ng-model** – string – An angular model defined in a controller. Should be a JS array or object
args=callbackName.substring(atStartBracket+1,atEndBracket),// matching function arguments inside brackets
54
-
constructor=callbackName.match(/^[^.]+.\s*/)[0].slice(0,-1);// matching a string upto a dot to check ctrl as syntax
54
+
constructor=callbackName.indexOf('.')!==-1 ? callbackName.substr(0,callbackName.indexOf('.')) : null;// matching a string upto a dot to check ctrl as syntax
0 commit comments