Compile dist
This commit is contained in:
parent
66ae2ad1d5
commit
8722ae2c81
2
dist/js/i18n/nl.js
vendored
2
dist/js/i18n/nl.js
vendored
@ -1,3 +1,3 @@
|
||||
/*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t="Er kunnen maar "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t+=" worden geselecteerd",t},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})();
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t=e.maximum==1?"kan":"kunnen",n="Er "+t+" maar "+e.maximum+" item";return e.maximum!=1&&(n+="s"),n+=" worden geselecteerd",n},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})();
|
56
dist/js/select2.full.js
vendored
56
dist/js/select2.full.js
vendored
@ -1870,27 +1870,49 @@ S2.define('select2/selection/search',[
|
||||
// Workaround for browsers which do not support the `input` event
|
||||
// This will prevent double-triggering of events for browsers which support
|
||||
// both the `keyup` and `input` events.
|
||||
this.$selection.on('input', '.select2-search--inline', function (evt) {
|
||||
// Unbind the duplicated `keyup` event
|
||||
self.$selection.off('keyup.search');
|
||||
});
|
||||
this.$selection.on(
|
||||
'input.searchcheck',
|
||||
'.select2-search--inline',
|
||||
function (evt) {
|
||||
// Try to detect the IE version should the `documentMode` property that
|
||||
// is stored on the document. This is only implemented in IE and is
|
||||
// slightly cleaner than doing a user agent check.
|
||||
// This property is not available in Edge, but Edge also doesn't have
|
||||
// this bug.
|
||||
var msie = document.documentMode;
|
||||
|
||||
this.$selection.on('keyup.search input', '.select2-search--inline',
|
||||
function (evt) {
|
||||
var key = evt.which;
|
||||
// IE will trigger the `input` event when a placeholder is used on a
|
||||
// search box. To get around this issue, we are forced to ignore all
|
||||
// `input` events in IE and keep using `keyup`.
|
||||
if (msie && msie <= 11) {
|
||||
self.$selection.off('input.search input.searchcheck');
|
||||
return;
|
||||
}
|
||||
|
||||
// We can freely ignore events from modifier keys
|
||||
if (key == KEYS.SHIFT || key == KEYS.CTRL || key == KEYS.ALT) {
|
||||
return;
|
||||
// Unbind the duplicated `keyup` event
|
||||
self.$selection.off('keyup.search');
|
||||
}
|
||||
);
|
||||
|
||||
// Tabbing will be handled during the `keydown` phase
|
||||
if (key == KEYS.TAB) {
|
||||
return;
|
||||
this.$selection.on(
|
||||
'keyup.search input.search',
|
||||
'.select2-search--inline',
|
||||
function (evt) {
|
||||
var key = evt.which;
|
||||
|
||||
// We can freely ignore events from modifier keys
|
||||
if (key == KEYS.SHIFT || key == KEYS.CTRL || key == KEYS.ALT) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Tabbing will be handled during the `keydown` phase
|
||||
if (key == KEYS.TAB) {
|
||||
return;
|
||||
}
|
||||
|
||||
self.handleSearch(evt);
|
||||
}
|
||||
|
||||
self.handleSearch(evt);
|
||||
});
|
||||
);
|
||||
};
|
||||
|
||||
/**
|
||||
@ -5249,8 +5271,6 @@ S2.define('select2/core',[
|
||||
}
|
||||
|
||||
this.trigger('query', {});
|
||||
|
||||
this.trigger('open');
|
||||
};
|
||||
|
||||
Select2.prototype.close = function () {
|
||||
|
6
dist/js/select2.full.min.js
vendored
6
dist/js/select2.full.min.js
vendored
File diff suppressed because one or more lines are too long
56
dist/js/select2.js
vendored
56
dist/js/select2.js
vendored
@ -1870,27 +1870,49 @@ S2.define('select2/selection/search',[
|
||||
// Workaround for browsers which do not support the `input` event
|
||||
// This will prevent double-triggering of events for browsers which support
|
||||
// both the `keyup` and `input` events.
|
||||
this.$selection.on('input', '.select2-search--inline', function (evt) {
|
||||
// Unbind the duplicated `keyup` event
|
||||
self.$selection.off('keyup.search');
|
||||
});
|
||||
this.$selection.on(
|
||||
'input.searchcheck',
|
||||
'.select2-search--inline',
|
||||
function (evt) {
|
||||
// Try to detect the IE version should the `documentMode` property that
|
||||
// is stored on the document. This is only implemented in IE and is
|
||||
// slightly cleaner than doing a user agent check.
|
||||
// This property is not available in Edge, but Edge also doesn't have
|
||||
// this bug.
|
||||
var msie = document.documentMode;
|
||||
|
||||
this.$selection.on('keyup.search input', '.select2-search--inline',
|
||||
function (evt) {
|
||||
var key = evt.which;
|
||||
// IE will trigger the `input` event when a placeholder is used on a
|
||||
// search box. To get around this issue, we are forced to ignore all
|
||||
// `input` events in IE and keep using `keyup`.
|
||||
if (msie && msie <= 11) {
|
||||
self.$selection.off('input.search input.searchcheck');
|
||||
return;
|
||||
}
|
||||
|
||||
// We can freely ignore events from modifier keys
|
||||
if (key == KEYS.SHIFT || key == KEYS.CTRL || key == KEYS.ALT) {
|
||||
return;
|
||||
// Unbind the duplicated `keyup` event
|
||||
self.$selection.off('keyup.search');
|
||||
}
|
||||
);
|
||||
|
||||
// Tabbing will be handled during the `keydown` phase
|
||||
if (key == KEYS.TAB) {
|
||||
return;
|
||||
this.$selection.on(
|
||||
'keyup.search input.search',
|
||||
'.select2-search--inline',
|
||||
function (evt) {
|
||||
var key = evt.which;
|
||||
|
||||
// We can freely ignore events from modifier keys
|
||||
if (key == KEYS.SHIFT || key == KEYS.CTRL || key == KEYS.ALT) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Tabbing will be handled during the `keydown` phase
|
||||
if (key == KEYS.TAB) {
|
||||
return;
|
||||
}
|
||||
|
||||
self.handleSearch(evt);
|
||||
}
|
||||
|
||||
self.handleSearch(evt);
|
||||
});
|
||||
);
|
||||
};
|
||||
|
||||
/**
|
||||
@ -5249,8 +5271,6 @@ S2.define('select2/core',[
|
||||
}
|
||||
|
||||
this.trigger('query', {});
|
||||
|
||||
this.trigger('open');
|
||||
};
|
||||
|
||||
Select2.prototype.close = function () {
|
||||
|
4
dist/js/select2.min.js
vendored
4
dist/js/select2.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user