27 lines
No EOL
619 B
JavaScript
Executable file
27 lines
No EOL
619 B
JavaScript
Executable file
////////////////////////////////////// Definitions
|
|
|
|
(function(old) {
|
|
$.fn.attr = function() {
|
|
if(arguments.length === 0) {
|
|
if(this.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
var obj = {};
|
|
$.each(this[0].attributes, function() {
|
|
if(this.specified) {
|
|
obj[this.name] = this.value;
|
|
}
|
|
});
|
|
return obj;
|
|
}
|
|
|
|
return old.apply(this, arguments);
|
|
};
|
|
})($.fn.attr);
|
|
|
|
|
|
///////////////////////////////// Autostart
|
|
$(function(){
|
|
$(".toggle-switch").bootstrapSwitch();
|
|
}); |