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.
 
 
 
 
 
 

26 lines
605 B

var ComponentsBootstrapSelectSplitter = function() {
var selectSplitter = function() {
$('#select_selectsplitter1').selectsplitter({
selectSize: 4
});
$('#select_selectsplitter2').selectsplitter({
selectSize: 6
});
$('#select_selectsplitter3').selectsplitter({
selectSize: 5
});
}
return {
//main function to initiate the module
init: function() {
selectSplitter();
}
};
}();
jQuery(document).ready(function() {
ComponentsBootstrapSelectSplitter.init();
});