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
* @param options.params parameter map for the transport ajax call, can contain such options as cache, jsonpCallback, etc. see $.ajax
398
398
* @param options.transport function that will be used to execute the ajax request. must be compatible with parameters supported by $.ajax
399
399
* @param options.url url for the data
400
400
* @param options.data a function(searchTerm, pageNumber, context) that should return an object containing query string parameters for the above url.
401
-
* @param options.dataType request data type: ajax, jsonp, other datatatypes supported by jQuery's $.ajax function or the transport function if specified
401
+
* @param options.dataType request data type: ajax, jsonp, other datatypes supported by jQuery's $.ajax function or the transport function if specified
402
402
* @param options.quietMillis (optional) milliseconds to wait before making the ajaxRequest, helps debounce the ajax function if invoked too often
403
403
* @param options.results a function(remoteData, pageNumber) that converts data returned form the remote request to the format expected by Select2.
404
404
* The expected format is an object containing the following keys:
@@ -1071,7 +1071,7 @@ the specific language governing permissions and limitations under the Apache Lic
1071
1071
// so here we trigger the click event manually
1072
1072
this.opts.element.click();
1073
1073
1074
-
// ValidationEngine ignorea the change event and listens instead to blur
1074
+
// ValidationEngine ignores the change event and listens instead to blur
1075
1075
// so here we trigger the blur event manually if so desired
1076
1076
if(this.opts.blurOnChange)
1077
1077
this.opts.element.blur();
@@ -1288,7 +1288,7 @@ the specific language governing permissions and limitations under the Apache Lic
1288
1288
this.dropdown.detach().appendTo(this.body());
1289
1289
}
1290
1290
1291
-
// create the dropdown mask if doesnt already exist
1291
+
// create the dropdown mask if doesn't already exist
1292
1292
mask=$("#select2-drop-mask");
1293
1293
if(mask.length==0){
1294
1294
mask=$(document.createElement("div"));
@@ -2413,7 +2413,7 @@ the specific language governing permissions and limitations under the Apache Lic
2413
2413
// TODO validate placeholder is a string if specified
0 commit comments