application.js
796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
// IT'S ALL JUST JUNK FOR OUR DOCS!
// ++++++++++++++++++++++++++++++++++++++++++
!function ($) {
$(function(){
$('.tooltip-demo').tooltip({
selector: "[data-toggle=tooltip]",
container: "body"
});
$("input[type='number']").stepper();
$(".selecter_1").selecter();
$(".selecter_2").selecter();
$(".selecter_3").selecter();
$(".selecter_4").selecter();
$(".selecter_5").selecter();
$(".selecter_6").selecter();
$('.checkbox input').iCheck({
checkboxClass: 'icheckbox_flat',
increaseArea: '20%'
});
$('.radio input').iCheck({
radioClass: 'iradio_flat',
increaseArea: '20%'
});
$('#accordion1').collapse();
$('#accordion2').collapse();
})
}(window.jQuery)