Browse Source

Delay notification start more on mobile

pull/1680/merge
Ruud 12 years ago
parent
commit
9e8d6aaaa1
  1. 2
      couchpotato/core/notifications/core/static/notification.js

2
couchpotato/core/notifications/core/static/notification.js

@ -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)
});
},

Loading…
Cancel
Save