##// END OF EJS Templates
fix missing semicolons
Matthias BUSSONNIER -
Show More
@@ -45,7 +45,7 b' define(['
45 45 this.element.fadeIn(100);
46 46
47 47 // reset previous set style
48 this.element.removeClass(),
48 this.element.removeClass();
49 49 this.style();
50 50 if (options.class){
51 51
@@ -17,15 +17,15 b''
17 17 }
18 18
19 19 .notification_widget.warning {
20 .btn-warning()
20 .btn-warning();
21 21 }
22 22 .notification_widget.success {
23 .btn-success()
23 .btn-success();
24 24 }
25 25 .notification_widget.info {
26 .btn-info()
26 .btn-info();
27 27 }
28 28 .notification_widget.danger {
29 .btn-danger()
29 .btn-danger();
30 30 }
31 31
General Comments 0
You need to be logged in to leave comments. Login now