Events can now be changed in overview page. issue 5

Former-commit-id: 31060a25e584ab277f222dae21bc7a938ec83b1b
This commit is contained in:
Ziver Koc 2016-01-22 15:46:09 +01:00
parent 87913dfd28
commit da24ffb822
9 changed files with 1028 additions and 6 deletions

View file

@ -1,3 +1,5 @@
////////////////////////////////////// Definitions
(function(old) {
$.fn.attr = function() {
if(arguments.length === 0) {
@ -16,4 +18,10 @@
return old.apply(this, arguments);
};
})($.fn.attr);
})($.fn.attr);
///////////////////////////////// Autostart
$(function(){
$(".toggle-switch").bootstrapSwitch();
});