Subversion-Projekte lars-tiefland.cienc

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
9 lars 1
var ComponentsBootstrapSelect = function () {
2
 
3
    var handleBootstrapSelect = function() {
4
        $('.bs-select').selectpicker({
5
            iconBase: 'fa',
6
            tickIcon: 'fa-check'
7
        });
8
    }
9
 
10
    return {
11
        //main function to initiate the module
12
        init: function () {
13
            handleBootstrapSelect();
14
        }
15
    };
16
 
17
}();
18
 
19
if (App.isAngularJsApp() === false) {
20
    jQuery(document).ready(function() {
21
        ComponentsBootstrapSelect.init();
22
    });
23
}