no html5 notifications

This commit is contained in:
Matias Alejo Garcia 2014-12-10 00:02:12 -03:00
parent 572d03c5bf
commit 1d8a5e9009
2 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,6 @@
'use strict'; 'use strict';
angular.module('copayApp.services') angular.module('copayApp.services')
.factory('identityService', function($rootScope, $location, $timeout, $filter, pluginManager, notification, pendingTxsService, balanceService, applicationService, go) { .factory('identityService', function($rootScope, $location, $timeout, $filter, pluginManager, notification, pendingTxsService, balanceService, applicationService, go) {
notification.enableHtml5Mode(); // for chrome: if support, enable it
// TODO: // TODO:
// * remove iden from rootScope // * remove iden from rootScope

View File

@ -51,7 +51,7 @@ factory('notification', ['$timeout',
}, },
details: true, details: true,
localStorage: false, localStorage: false,
html5Mode: true, html5Mode: false,
html5DefaultIcon: 'img/favicon.ico' html5DefaultIcon: 'img/favicon.ico'
}; };