Delay notification start more on mobile

This commit is contained in:
Ruud
2013-05-05 20:14:54 +02:00
parent e814b551b4
commit 9e8d6aaaa1
@@ -31,7 +31,7 @@ var NotificationBase = new Class({
});
window.addEvent('load', function(){
self.startInterval.delay(2000, self)
self.startInterval.delay($(window).getSize().x <= 480 ? 2000 : 300, self)
});
},