parent
d6d6ca81aa
commit
fa4397c044
@ -0,0 +1,35 @@ |
||||
/*! |
||||
* Bootstrap-select v1.7.3 (http://silviomoreto.github.io/bootstrap-select)
|
||||
* |
||||
* Copyright 2013-2015 bootstrap-select |
||||
* Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
|
||||
*/ |
||||
|
||||
(function (root, factory) { |
||||
if (typeof define === 'function' && define.amd) { |
||||
// AMD. Register as an anonymous module unless amdModuleId is set
|
||||
define(["jquery"], function (a0) { |
||||
return (factory(a0)); |
||||
}); |
||||
} else if (typeof exports === 'object') { |
||||
// Node. Does not work with strict CommonJS, but
|
||||
// only CommonJS-like environments that support module.exports,
|
||||
// like Node.
|
||||
module.exports = factory(require("jquery")); |
||||
} else { |
||||
factory(jQuery); |
||||
} |
||||
}(this, function () { |
||||
|
||||
(function ($) { |
||||
$.fn.selectpicker.defaults = { |
||||
noneSelectedText: 'No hay selección', |
||||
noneResultsText: 'No hay resultados {0}', |
||||
countSelectedText: 'Seleccionados {0} de {1}', |
||||
maxOptionsText: ['Límite alcanzado ({n} {var} max)', 'Límite del grupo alcanzado({n} {var} max)', ['elementos', 'element']], |
||||
multipleSeparator: ', ' |
||||
}; |
||||
})(jQuery); |
||||
|
||||
|
||||
})); |
||||
@ -0,0 +1,7 @@ |
||||
/*! |
||||
* Bootstrap-select v1.7.3 (http://silviomoreto.github.io/bootstrap-select)
|
||||
* |
||||
* Copyright 2013-2015 bootstrap-select |
||||
* Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
|
||||
*/ |
||||
!function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof exports?module.exports=b(require("jquery")):b(jQuery)}(this,function(){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"No hay selección",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["Límite alcanzado ({n} {var} max)","Límite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", "}}(jQuery)}); |
||||
Loading…
Reference in new issue