Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
776 lars 1
/*!
2
 * Bootstrap-select v1.9.3 (http://silviomoreto.github.io/bootstrap-select)
3
 *
4
 * Copyright 2013-2015 bootstrap-select
5
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
 */
7
 
8
(function (root, factory) {
9
  if (typeof define === 'function' && define.amd) {
10
    // AMD. Register as an anonymous module unless amdModuleId is set
11
    define(["jquery"], function (a0) {
12
      return (factory(a0));
13
    });
14
  } else if (typeof exports === 'object') {
15
    // Node. Does not work with strict CommonJS, but
16
    // only CommonJS-like environments that support module.exports,
17
    // like Node.
18
    module.exports = factory(require("jquery"));
19
  } else {
20
    factory(jQuery);
21
  }
22
}(this, function (jQuery) {
23
 
24
(function ($) {
25
  $.fn.selectpicker.defaults = {
26
    noneSelectedText: 'Hautapenik ez',
27
    noneResultsText: 'Emaitzarik ez {0}',
28
    countSelectedText: '{1}(e)tik {0} hautatuta',
29
    maxOptionsText: ['Mugara iritsita ({n} {var} gehienez)', 'Taldearen mugara iritsita ({n} {var} gehienez)', ['elementu', 'elementu']],
30
    multipleSeparator: ', '
31
  };
32
})(jQuery);
33
 
34
 
35
}));