Ticket #2836: jquery.autocomplete.js.diff
| File jquery.autocomplete.js.diff, 0.5 kB (added by garrettmoon, 8 months ago) |
|---|
-
(a) jquery.autocomplete.js vs. (b) (clipboard)
a b 218 218 219 219 var currentValue = $input.val(); 220 220 221 if (options.allowedChars != ''){ 222 var reg = new RegExp('[^' + options.allowedChars + ']', 'g'); 223 currentValue = currentValue.replace(reg, ''); 224 } 225 221 226 if ( !skipPrevCheck && currentValue == previousValue ) 222 227 return; 223 228 … … 382 398 formatMatch: null, 383 399 autoFill: false, 384 400 width: 0, 401 allowedChars: '', 385 402 multiple: false, 386 403 multipleSeparator: ", ", 387 404 highlight: function(value, term) {
