Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
776 lars 1
var ComponentsBootstrapSelectSplitter = function() {
2
 
3
    var selectSplitter = function() {
4
        $('#select_selectsplitter1').selectsplitter({
5
            selectSize: 4
6
        });
7
        $('#select_selectsplitter2').selectsplitter({
8
            selectSize: 6
9
        });
10
        $('#select_selectsplitter3').selectsplitter({
11
            selectSize: 5
12
        });
13
    }
14
 
15
    return {
16
        //main function to initiate the module
17
        init: function() {
18
            selectSplitter();
19
        }
20
    };
21
 
22
}();
23
 
24
jQuery(document).ready(function() {
25
   ComponentsBootstrapSelectSplitter.init();
26
});