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
{{ message }}
This repository was archived by the owner on Sep 8, 2020. It is now read-only.
* If user defines ui-sortable-callback for @key and callback based option at the same time the html based ui-sortable-callback expression will be selected. (Overridden)
138
-
* If user defined ui-sortable-callback for @key but callback expression is empty then option based @key callback will be selected.
139
-
* If user not defines a option for @key callback then html based ui-sortable-callback will be just selected.
140
-
* If user just defines option for @key callback then it will be attached.
varexpression=scope[key];//Scope variable can be changed on fly.
147
-
varreceivedFunct=scope.received;
148
-
varexpressionCapsule=function(e,ui)
149
-
{
150
-
try
151
-
{
152
-
153
-
expression.apply(0,arguments);//Sends all of arguments to callBack function.
154
-
155
-
if(receivedFunctinstanceofFunction)
156
-
receivedFunct.apply(0,arguments);
157
-
158
-
}
159
-
catch(err)
160
-
{
161
-
//Can be printed to console.
162
-
}
163
-
}
164
-
165
-
value=patchSortableOption(key,expressionCapsule);
166
-
}
167
-
else
168
-
{
169
-
value=patchSortableOption(key,value);
170
-
}
136
+
/*
137
+
* If user defines ui-sortable-callback for @key and callback based option at the same time the html based ui-sortable-callback expression will be selected. (Overridden)
138
+
* If user defined ui-sortable-callback for @key but callback expression is empty then option based @key callback will be selected.
139
+
* If user not defines a option for @key callback then html based ui-sortable-callback will be just selected.
140
+
* If user just defines option for @key callback then it will be attached.
0 commit comments