1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-08 19:43:45 +00:00

lint fixes

This commit is contained in:
Kyle Spearrin
2017-12-19 12:15:24 -05:00
parent 0d2bf4f7a1
commit bf885c184f
4 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
angular
.module('bit.services')
.factory('eventService', function (constants, $filter, constants) {
.factory('eventService', function (constants, $filter) {
var _service = {};
_service.getDefaultDateFilters = function () {

View File

@@ -23,7 +23,7 @@ angular
_browserCache = constants.deviceType.firefox;
}
else if (/constructor/i.test(window.HTMLElement) ||
safariCheck(!window['safari'] || (typeof safari !== 'undefined' && safari.pushNotification))) {
safariCheck(!window.safari || (typeof safari !== 'undefined' && safari.pushNotification))) {
_browserCache = constants.deviceType.opera;
}
else if (!!document.documentMode) {