repo stringlengths 5 106 | file_url stringlengths 78 301 | file_path stringlengths 4 211 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 14:56:49 2026-01-05 02:23:25 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/vendor/jquery-2.2.4.js | tests/vendor/jquery-2.2.4.js | /*!
* jQuery JavaScript Library v2.2.4
* http://jquery.com/
*
* Includes Sizzle.js
* http://sizzlejs.com/
*
* Copyright jQuery Foundation and other contributors
* Released under the MIT license
* http://jquery.org/license
*
* Date: 2016-05-20T17:23Z
*/
(function( global, factory ) {
if ( typeof module ==... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | true |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/options/element-tests.js | tests/options/element-tests.js | QUnit.module('Options - Copying from element');
var $ = require('jquery');
var Options = require('select2/options');
QUnit.test('copies disabled attribute when set', function (assert) {
var $test = $('<select disabled></select>');
var options = new Options({}, $test);
assert.ok(options.get('disabled'));
});
... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/options/translation-tests.js | tests/options/translation-tests.js | var $ = require('jquery');
var Options = require('select2/options');
var Defaults = require('select2/defaults');
QUnit.module('Options - Translations', {
beforeEach: function () {
Defaults.reset();
},
afterEach: function () {
Defaults.reset();
}
});
QUnit.test('partial dictionaries are reset when defa... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/options/data-tests.js | tests/options/data-tests.js | QUnit.module('Options - Attributes');
var $ = require('jquery');
var Options = require('select2/options');
QUnit.test('no nesting', function (assert) {
var $test = $('<select data-test="test"></select>');
var options = new Options({}, $test);
assert.equal(options.get('test'), 'test');
});
QUnit.test('with n... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/options/width-tests.js | tests/options/width-tests.js | QUnit.module('Options - Width');
var $ = require('jquery');
var Select2 = require('select2/core');
var select = new Select2($('<select></select>'));
QUnit.test('string passed as width', function (assert) {
var $test = $('<select></select>');
var width = select._resolveWidth($test, '80%');
assert.equal(width,... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/options/ajax-tests.js | tests/options/ajax-tests.js | QUnit.module('Defaults - Ajax');
QUnit.test('options are merged recursively with default options', function (assert) {
var defaults = require('select2/defaults');
var ajaxDelay = 250;
var ajaxUrl = 'http://www.test.com';
var mergedOptions;
defaults.set('ajax--delay', ajaxDelay);
mergedOptions = default... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/results/option-tests.js | tests/results/option-tests.js | QUnit.module('Results - option');
var $ = require('jquery');
var Options = require('select2/options');
var Results = require('select2/results');
QUnit.test('disabled property on option is respected - enabled', function (assert) {
var results = new Results($('<select></select>'), new Options({}));
var $option =... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/results/a11y-tests.js | tests/results/a11y-tests.js | QUnit.module('Results - Accessibility');
var $ = require('jquery');
var Options = require('select2/options');
var Results = require('select2/results');
QUnit.test('role of results should be a listbox', function (assert) {
var results = new Results($('<select></select>'), new Options({}));
var $results = result... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/results/focusing-tests.js | tests/results/focusing-tests.js | QUnit.module('Results - highlighting results');
QUnit.test('results:all with no data skips results:focus', function (assert) {
assert.expect(0);
var $ = require('jquery');
var $select = $('<select></select>');
var $parent = $('<div></div>');
var $container = $('<span></span>');
var container = new MockC... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/results/infiniteScroll-tests.js | tests/results/infiniteScroll-tests.js | QUnit.module('Results - Infinite scrolling');
QUnit.test('loadingMore is triggered even without a scrollbar', function (assert) {
assert.expect(1);
var $ = require('jquery');
var $select = $('<select></select>');
var $container = $('<span></span>');
var container = new MockContainer();
var Utils = requ... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/utils/decorator-tests.js | tests/utils/decorator-tests.js | QUnit.module('Decorators');
var Utils = require('select2/utils');
QUnit.test('overridden - method', function (assert) {
function BaseClass () {}
BaseClass.prototype.hello = function () {
return 'A';
};
function DecoratorClass () {}
DecoratorClass.prototype.hello = function () {
return 'B';
};
... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/utils/escapeMarkup-tests.js | tests/utils/escapeMarkup-tests.js | QUnit.module('Utils - escapeMarkup');
var Utils = require('select2/utils');
QUnit.test('text passes through', function (assert) {
var text = 'testing this';
var escaped = Utils.escapeMarkup(text);
assert.equal(text, escaped);
});
QUnit.test('html tags are escaped', function (assert) {
var text = '<script>al... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/utils/data-tests.js | tests/utils/data-tests.js | var $ = require('jquery');
var Utils = require('select2/utils');
QUnit.module('Utils - GetUniqueElementId');
QUnit.test('Adds a prefix to the existing ID if one exists', function (assert) {
var $element = $('<select id="existing-id"></select>');
var id = Utils.GetUniqueElementId($element[0]);
assert.not... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/dropdown/search-tests.js | tests/dropdown/search-tests.js | QUnit.module('Dropdown - Search');
var Dropdown = require('select2/dropdown');
var DropdownSearch = Utils.Decorate(
Dropdown,
require('select2/dropdown/search')
);
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
var options = new Options({});
QUnit.test... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/dropdown/positioning-tests.js | tests/dropdown/positioning-tests.js | QUnit.module('Dropdown - attachBody - positioning');
QUnit.test('appends to the dropdown parent', function (assert) {
assert.expect(4);
var $ = require('jquery');
var $select = $('<select></select>');
var $parent = $('<div></div>');
var $container = $('<span></span>');
var container = new Mo... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/dropdown/stopPropagation-tests.js | tests/dropdown/stopPropagation-tests.js | QUnit.module('Dropdown - Stopping event propagation');
var Dropdown = require('select2/dropdown');
var StopPropagation = require('select2/dropdown/stopPropagation');
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
var CustomDropdown = Utils.Decorate(Dropdown... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/dropdown/search-a11y-tests.js | tests/dropdown/search-a11y-tests.js | QUnit.module('Dropdown - Search - Accessibility');
var Utils = require('select2/utils');
var Dropdown = require('select2/dropdown');
var DropdownSearch = Utils.Decorate(
Dropdown,
require('select2/dropdown/search')
);
var $ = require('jquery');
var Options = require('select2/options');
var options = new Options... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/dropdown/dropdownParent-tests.js | tests/dropdown/dropdownParent-tests.js | QUnit.module('Dropdown - attachBody - dropdownParent option');
QUnit.test('can be a selector string', function (assert) {
assert.expect(1);
var $ = require('jquery');
var $select = $('<select></select>');
var $parent = $('<div id="parent"></div>');
$('#qunit-fixture').append($parent);
var U... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/dropdown/selectOnClose-tests.js | tests/dropdown/selectOnClose-tests.js | QUnit.module('Dropdown - selectOnClose');
var $ = require('jquery');
var Utils = require('select2/utils');
var Options = require('select2/options');
var SelectData = require('select2/data/select');
var Results = require('select2/results');
var SelectOnClose = require('select2/dropdown/selectOnClose');
var Modified... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/dropdown/dropdownCss-tests.js | tests/dropdown/dropdownCss-tests.js | QUnit.module('Dropdown - dropdownCssClass');
var $ = require('jquery');
var Utils = require('select2/utils');
var Options = require('select2/options');
var Dropdown = require('select2/dropdown');
var DropdownCSS = Utils.Decorate(
Dropdown,
require('select2/dropdown/dropdownCss')
);
QUnit.test('all classes will b... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/selection/search-tests.js | tests/selection/search-tests.js | QUnit.module('Selection containers - Inline search');
var MultipleSelection = require('select2/selection/multiple');
var InlineSearch = require('select2/selection/search');
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
var options = new Options({});
QUnit... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/selection/openOnKeyDown-tests.js | tests/selection/openOnKeyDown-tests.js | QUnit.module('Selection containers - Open On Key Down');
var KEYS = require('select2/keys');
var $ = require('jquery');
/**
* Build a keydown event with the given key code and extra options.
*
* @param {Number} keyCode the keyboard code to be used for the 'which'
* attribute of t... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/selection/search-placeholder-tests.js | tests/selection/search-placeholder-tests.js | QUnit.module('Selection containers - Inline search - Placeholder');
var MultipleSelection = require('select2/selection/multiple');
var InlineSearch = require('select2/selection/search');
var SelectionPlaceholder = require('select2/selection/placeholder');
var $ = require('jquery');
var Options = require('select2/opti... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/selection/single-tests.js | tests/selection/single-tests.js | QUnit.module('Selection containers - Single');
var SingleSelection = require('select2/selection/single');
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
var options = new Options({});
QUnit.test('display uses templateSelection', function (assert) {
var c... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/selection/stopPropagation-tests.js | tests/selection/stopPropagation-tests.js | QUnit.module('Selection containers - Stopping event propagation');
var SingleSelection = require('select2/selection/single');
var StopPropagation = require('select2/selection/stopPropagation');
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
var CutomSelecti... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/selection/search-a11y-tests.js | tests/selection/search-a11y-tests.js | QUnit.module('Selection containers - Inline search - Accessibility');
var MultipleSelection = require('select2/selection/multiple');
var InlineSearch = require('select2/selection/search');
var $ = require('jquery');
var Utils = require('select2/utils');
var Options = require('select2/options');
var options = new Opt... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/selection/allowClear-tests.js | tests/selection/allowClear-tests.js | QUnit.module('Selection containers - Placeholders - Allow clear');
var Placeholder = require('select2/selection/placeholder');
var AllowClear = require('select2/selection/allowClear');
var SingleSelection = require('select2/selection/single');
var MultipleSelection = require('select2/selection/multiple');
var $ = re... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/selection/focusing-tests.js | tests/selection/focusing-tests.js | QUnit.module('Selection containers - Managing focus');
var SingleSelection = require('select2/selection/single');
var $ = require('jquery');
var Options = require('select2/options');
var options = new Options({});
QUnit.test('close sets the focus to the selection', function (assert) {
var $container = $('#qunit-f... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/selection/selectionCss-tests.js | tests/selection/selectionCss-tests.js | QUnit.module('Dropdown - selectionCssClass');
var $ = require('jquery');
var Utils = require('select2/utils');
var Options = require('select2/options');
var SingleSelection = require('select2/selection/single');
var SelectionCSS = Utils.Decorate(
SingleSelection,
require('select2/selection/selectionCss')
);
QUni... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/selection/placeholder-tests.js | tests/selection/placeholder-tests.js | QUnit.module('Selection containers - Placeholders');
var Placeholder = require('select2/selection/placeholder');
var SingleSelection = require('select2/selection/single');
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
var SinglePlaceholder = Utils.Decorate... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/selection/multiple-tests.js | tests/selection/multiple-tests.js | QUnit.module('Selection containers - Multiple');
var MultipleSelection = require('select2/selection/multiple');
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
var options = new Options({});
QUnit.test('display uses templateSelection', function (assert) {
... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/data/tokenizer-tests.js | tests/data/tokenizer-tests.js | QUnit.module('Data adaptor - Tokenizer');
QUnit.test('triggers the select event', function (assert) {
assert.expect(2);
var SelectData = require('select2/data/select');
var Tokenizer = require('select2/data/tokenizer');
var Tags = require('select2/data/tags');
var Options = require('select2/options');
va... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/data/select-tests.js | tests/data/select-tests.js | QUnit.module('Data adapters - Select - current');
var SelectData = require('select2/data/select');
var $ = require('jquery');
var Options = require('select2/options');
var selectOptions = new Options({});
QUnit.test('current gets default for single', function (assert) {
var $select = $('#qunit-fixture .single');
... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/data/tags-tests.js | tests/data/tags-tests.js | QUnit.module('Data adapters - Tags');
var SelectData = require('select2/data/select');
var Tags = require('select2/data/tags');
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
var SelectTags = Utils.Decorate(SelectData, Tags);
var options = new Options({
t... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/data/maximumSelectionLength-tests.js | tests/data/maximumSelectionLength-tests.js | QUnit.module('Data adapters - Maximum selection length');
var SelectData = require('select2/data/select');
var MaximumSelectionLength = require('select2/data/maximumSelectionLength');
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
var MaximumSelectionData =... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/data/minimumInputLength-tests.js | tests/data/minimumInputLength-tests.js | QUnit.module('Data adapters - Minimum input length');
var MinimumInputLength = require('select2/data/minimumInputLength');
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
function StubData () {
this.called = false;
}
StubData.prototype.query = function (pa... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/data/base-tests.js | tests/data/base-tests.js | QUnit.module('Data adapters - Base');
var BaseData = require('select2/data/base');
var $ = require('jquery');
var Options = require('select2/options');
var options = new Options({});
QUnit.test('current is required', function (assert) {
var data = new BaseData($('#qunit-fixture select'), options);
assert.throws... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/data/array-tests.js | tests/data/array-tests.js | QUnit.module('Data adapters - Array');
var ArrayData = require('select2/data/array');
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
var UserDefinedType = function (id, text) {
var self = this;
self.id = id;
self.text = text;
return self;
};
var a... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/tests/data/maximumInputLength-tests.js | tests/data/maximumInputLength-tests.js | QUnit.module('Data adapters - Maximum input length');
var MaximumInputLength = require('select2/data/maximumInputLength');
var $ = require('jquery');
var Options = require('select2/options');
var Utils = require('select2/utils');
function MaximumInputStub () {
this.called = false;
}
MaximumInputStub.prototype.quer... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/docs/plugins/highlight/js/highlight.pack.js | docs/plugins/highlight/js/highlight.pack.js | /*! highlight.js v9.1.0 | BSD3 License | git.io/hljslicense */
| javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | true |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/docs/plugins/highlight/js/highlightjs-line-numbers.min.js | docs/plugins/highlight/js/highlightjs-line-numbers.min.js | !function(e){"use strict";function t(){"complete"===document.readyState?n():e.addEventListener("DOMContentLoaded",n)}function n(){try{var e=document.querySelectorAll("code.hljs");for(var t in e)e.hasOwnProperty(t)&&r(e[t])}catch(n){console.error("LineNumbers error: ",n)}}function r(e){if("object"==typeof e){var t=e.par... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/docs/plugins/anchors/js/anchor.min.js | docs/plugins/anchors/js/anchor.min.js | /**
* AnchorJS - v3.2.2 - 2016-10-05
* https://github.com/bryanbraun/anchorjs
* Copyright (c) 2016 Bryan Braun; Licensed MIT
*/
!function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(this,fu... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/docs/plugins/simplesearch/js/simplesearch.js | docs/plugins/simplesearch/js/simplesearch.js | ((function(){
var findAncestor = function(el, selector) {
while ((el = el.parentElement) && !((el.matches || el.matchesSelector).call(el, selector))) {}
return el;
};
var fields = document.querySelectorAll('input[name="searchfield"][data-search-input]');
fields.forEach(function(field) {... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/docs/themes/site/js/data-fill-from.js | docs/themes/site/js/data-fill-from.js | $(document).ready(function() {
$("[data-fill-from]").each(function () {
var $this = $(this);
var codeContainer = $this.data("fill-from");
var $container = $(codeContainer);
var code = ($container.html() || '').trim();
$this.text(code);
$this.addClass("prettyprint");
});
});
| javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/docs/themes/learn2/js/jquery.scrollbar.min.js | docs/themes/learn2/js/jquery.scrollbar.min.js | /**
* jQuery CSS Customizable Scrollbar
*
* Copyright 2015, Yuriy Khabarov
* Dual licensed under the MIT or GPL Version 2 licenses.
*
* If you found bug, please contact me via email <13real008@gmail.com>
*
* Compressed by http://jscompress.com/
*
* @author Yuriy Khabarov aka Gromo
* @version 0.2.9
* @url ht... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/docs/themes/learn2/js/clipboard.min.js | docs/themes/learn2/js/clipboard.min.js | /*!
* clipboard.js v1.5.5
* https://zenorocha.github.io/clipboard.js
*
* Licensed MIT © Zeno Rocha
*/
!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var e;e="undefined"!=typeof window?window:"undefined"!=typeof... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/docs/themes/learn2/js/learn.js | docs/themes/learn2/js/learn.js | // Scrollbar Width function
function getScrollBarWidth() {
var inner = document.createElement('p');
inner.style.width = "100%";
inner.style.height = "200px";
var outer = document.createElement('div');
outer.style.position = "absolute";
outer.style.top = "0px";
outer.style.left = "0px";
... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/docs/themes/learn2/js/modernizr.custom.71422.js | docs/themes/learn2/js/modernizr.custom.71422.js | /* Modernizr 2.7.1 (Custom Build) | MIT & BSD
* Build: http://modernizr.com/download/#-csstransforms3d-shiv-cssclasses-teststyles-testprop-testallprops-prefixes-domprefixes-load
*/
;window.Modernizr=function(a,b,c){function z(a){j.cssText=a}function A(a,b){return z(m.join(a+";")+(b||""))}function B(a,b){return typeof... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/docs/themes/learn2/js/featherlight.min.js | docs/themes/learn2/js/featherlight.min.js | /**
* Featherlight - ultra slim jQuery lightbox
* Version 1.2.3 - http://noelboss.github.io/featherlight/
*
* Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
* MIT Licensed.
**/
!function(a){"use strict";function b(a,c){if(!(this instanceof b)){var d=new b(a,c);return d.open(),d}this.id=b.id++,this.se... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/docs/themes/learn2/js/html5shiv-printshiv.min.js | docs/themes/learn2/js/html5shiv-printshiv.min.js | /**
* @preserve HTML5 Shiv prev3.7.1 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
*/
!function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=x.element... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/select2.js | dist/js/select2.js | /*!
* Select2 4.1.0-rc.0
* https://select2.github.io
*
* Released under the MIT license
* https://github.com/select2/select2/blob/master/LICENSE.md
*/
;(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['jquery'], factory);
} else i... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | true |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/select2.min.js | dist/js/select2.min.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
| javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | true |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/select2.full.js | dist/js/select2.full.js | /*!
* Select2 4.1.0-rc.0
* https://select2.github.io
*
* Released under the MIT license
* https://github.com/select2/select2/blob/master/LICENSE.md
*/
;(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['jquery'], factory);
} else i... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | true |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/select2.full.min.js | dist/js/select2.full.min.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
| javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | true |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/ko.js | dist/js/i18n/ko.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(n){return"너... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/hsb.js | dist/js/i18n/hsb.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/hsb",[],function(){var n=["znamješko","znamješce","znamješka","znamješkow"],e=["zapisk","zapiskaj","zapiski... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/pa.js | dist/js/i18n/pa.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/pa",[],function(){return{errorLoading:function(){return"ਨਤੀਜੇ ਲੋਡ ਨਹੀਂ ਕੀਤੇ ਜਾ ਸਕਦੇ ।"},inputTooLong:functi... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/sl.js | dist/js/i18n/sl.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/sl",[],function(){return{errorLoading:function(){return"Zadetkov iskanja ni bilo mogoče naložiti."},inputTo... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/ug.js | dist/js/i18n/ug.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ug",[],function(){return{errorLoading:function(){return"نەتىجىنى يۈكلىيەلمىدى."},inputTooLong:function(n){r... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/nb.js | dist/js/i18n/nb.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:functio... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/fa.js | dist/js/i18n/fa.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:fun... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/ar.js | dist/js/i18n/ar.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(n){re... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/eo.js | dist/js/i18n/eo.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/eo",[],function(){return{errorLoading:function(){return"La rezultoj ne povas esti ŝargitaj."},inputTooLong:... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/lt.js | dist/js/i18n/lt.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/lt",[],function(){function n(n,e,i,t){return n%10==1&&(n%100<11||n%100>19)?e:n%10>=2&&n%10<=9&&(n%100<11||n... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/zh-TW.js | dist/js/i18n/zh-TW.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/zh-TW",[],function(){return{errorLoading:function(){return"無法載入結果。"},inputTooLong:function(n){return"請刪掉"+(... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/hi.js | dist/js/i18n/hi.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:fu... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/bg.js | dist/js/i18n/bg.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/bg",[],function(){return{inputTooLong:function(n){var e=n.input.length-n.maximum,u="Моля въведете с "+e+" п... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/sr-Cyrl.js | dist/js/i18n/sr-Cyrl.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/sr-Cyrl",[],function(){function n(n,e,r,u){return n%10==1&&n%100!=11?e:n%10>=2&&n%10<=4&&(n%100<12||n%100>1... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/eu.js | dist/js/i18n/eu.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return n+=1==t... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/sr.js | dist/js/i18n/sr.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/sr",[],function(){function n(n,e,r,t){return n%10==1&&n%100!=11?e:n%10>=2&&n%10<=4&&(n%100<12||n%100>14)?r:... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/nl.js | dist/js/i18n/nl.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTo... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/th.js | dist/js/i18n/th.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/th",[],function(){return{errorLoading:function(){return"ไม่สามารถค้นข้อมูลได้"},inputTooLong:function(n){re... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/da.js | dist/js/i18n/da.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:fu... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/hy.js | dist/js/i18n/hy.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/hy",[],function(){return{errorLoading:function(){return"Արդյունքները հնարավոր չէ բեռնել։"},inputTooLong:fun... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/ro.js | dist/js/i18n/ro.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/ro",[],function(){return{errorLoading:function(){return"Rezultatele nu au putut fi incărcate."},inputTooLon... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/tk.js | dist/js/i18n/tk.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/tk",[],function(){return{errorLoading:function(){return"Netije ýüklenmedi."},inputTooLong:function(e){retur... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/el.js | dist/js/i18n/el.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/el",[],function(){return{errorLoading:function(){return"Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν."},inputT... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/te.js | dist/js/i18n/te.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/te",[],function(){return{errorLoading:function(){return"ఫలితాలు చూపించలేకపోతున్నాము"},inputTooLong:function... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/hr.js | dist/js/i18n/hr.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/hr",[],function(){function n(n){var e=" "+n+" znak";return n%10<5&&n%10>0&&(n%100<5||n%100>19)?n%10>1&&(e+=... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/pt.js | dist/js/i18n/pt.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTo... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/es.js | dist/js/i18n/es.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"No se pudieron cargar los resultados"},inputTooLong... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/is.js | dist/js/i18n/is.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/is",[],function(){return{inputTooLong:function(n){var t=n.input.length-n.maximum,e="Vinsamlegast styttið te... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/de.js | dist/js/i18n/de.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/de",[],function(){return{errorLoading:function(){return"Die Ergebnisse konnten nicht geladen werden."},inpu... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/zh-CN.js | dist/js/i18n/zh-CN.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(n){return"请删除"+(... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/sq.js | dist/js/i18n/sq.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/sq",[],function(){return{errorLoading:function(){return"Rezultatet nuk mund të ngarkoheshin."},inputTooLong... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/en.js | dist/js/i18n/en.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:fun... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/lv.js | dist/js/i18n/lv.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/lv",[],function(){function e(e,n,u,i){return 11===e?n:e%10==1?u:i}return{inputTooLong:function(n){var u=n.i... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/lb.js | dist/js/i18n/lb.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/lb",[],function(){return{errorLoading:function(){return"D'Resultater konnten net geluede ginn."},inputTooLo... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/ne.js | dist/js/i18n/ne.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ne",[],function(){return{errorLoading:function(){return"नतिजाहरु देखाउन सकिएन।"},inputTooLong:function(n){v... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/hu.js | dist/js/i18n/hu.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/hu",[],function(){return{errorLoading:function(){return"Az eredmények betöltése nem sikerült."},inputTooLon... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/id.js | dist/js/i18n/id.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(n... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/bs.js | dist/js/i18n/bs.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/bs",[],function(){function e(e,n,r,t){return e%10==1&&e%100!=11?n:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?r:... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/tr.js | dist/js/i18n/tr.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/tr",[],function(){return{errorLoading:function(){return"Sonuç yüklenemedi"},inputTooLong:function(n){return... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/fr.js | dist/js/i18n/fr.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputT... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/pt-BR.js | dist/js/i18n/pt-BR.js | /*! Select2 4.1.0-rc.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;e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inpu... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/ps.js | dist/js/i18n/ps.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ps",[],function(){return{errorLoading:function(){return"پايلي نه سي ترلاسه کېدای"},inputTooLong:function(n)... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/km.js | dist/js/i18n/km.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/km",[],function(){return{errorLoading:function(){return"មិនអាចទាញយកទិន្នន័យ"},inputTooLong:function(n){retu... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/he.js | dist/js/i18n/he.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(n){var... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/pl.js | dist/js/i18n/pl.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/pl",[],function(){var n=["znak","znaki","znaków"],e=["element","elementy","elementów"],r=function(n,e){retu... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
select2/select2 | https://github.com/select2/select2/blob/595494a72fee67b0a61c64701cbb72e3121f97b9/dist/js/i18n/ms.js | dist/js/i18n/ms.js | /*! Select2 4.1.0-rc.0 | https://github.com/select2/select2/blob/master/LICENSE.md */
!function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:f... | javascript | MIT | 595494a72fee67b0a61c64701cbb72e3121f97b9 | 2026-01-04T15:04:04.887474Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.