rollover beta to prod, beta fixes

This commit is contained in:
Trevor Squillario 2014-04-05 13:25:42 -04:00
parent 8361a247ba
commit c65bb06cb7
3 changed files with 4 additions and 4 deletions

View file

@ -145,7 +145,7 @@ JamStash.service('notifications', function ($rootScope, globals) {
if (autohide) {
setTimeout(function () {
$(el).fadeOut(function () { $(this).remove(); });
}, globals.settings.NotificationTimeout);
}, globals.settings.Timeout);
} else {
$(el).click(function () {
$(el).fadeOut(function () { $(this).remove(); });
@ -188,7 +188,7 @@ JamStash.service('notifications', function ($rootScope, globals) {
notifications.push(notification);
setTimeout(function (notWin) {
notWin.close();
}, globals.settings.NotificationTimeout, notification);
}, globals.settings.Timeout, notification);
notification.show();
} else {
console.log("showNotification: No Permission");