Remove a bunch of old vender files, refactor locations of static and template files, force api limit on calls

This commit is contained in:
Isaac Bythewood
2013-02-23 02:23:58 +00:00
parent 92b54799da
commit a7d571a509
39 changed files with 38 additions and 12079 deletions

View File

@@ -0,0 +1,12 @@
$(document).ready(function() {
var delayTime = 3000,
alerts = $('.alert');
delayTime = delayTime + (alerts.length * 250);
alerts.each(function() {
$(this).delay(delayTime).fadeOut('slow');
delayTime -= 250;
console.log(delayTime);
});
});