You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
522 B
23 lines
522 B
var ComponentsBootstrapSelect = function () {
|
|
|
|
var handleBootstrapSelect = function() {
|
|
$('.bs-select').selectpicker({
|
|
iconBase: 'fa',
|
|
tickIcon: 'fa-check'
|
|
});
|
|
}
|
|
|
|
return {
|
|
//main function to initiate the module
|
|
init: function () {
|
|
handleBootstrapSelect();
|
|
}
|
|
};
|
|
|
|
}();
|
|
|
|
if (App.isAngularJsApp() === false) {
|
|
jQuery(document).ready(function() {
|
|
ComponentsBootstrapSelect.init();
|
|
});
|
|
}
|