Sorted all JavaScript, image and style files. Basically, it drops support for IE6/7

This commit is contained in:
Bas Stottelaar
2014-09-16 22:43:20 +02:00
parent a6fe517f87
commit 3fef151fca
19 changed files with 18 additions and 10522 deletions
+17
View File
@@ -0,0 +1,17 @@
window.log = function(){
log.history = log.history || [];
log.history.push(arguments);
arguments.callee = arguments.callee.caller;
if (this.console) {
console.log(Array.prototype.slice.call(arguments));
}
};
function toggle(source) {
checkboxes = document.getElementsByClassName('checkbox');
for (var i in checkboxes) {
checkboxes[i].checked = source.checked;
}
}