Repository: eagle
Updated Branches:
  refs/heads/master 1c90aa46d -> 07990e3e7


[MINOR] Fix jslint of $notification

jslint check for the notification with warning

Author: zombieJ <[email protected]>

Closes #847 from zombieJ/minor.


Project: http://git-wip-us.apache.org/repos/asf/eagle/repo
Commit: http://git-wip-us.apache.org/repos/asf/eagle/commit/07990e3e
Tree: http://git-wip-us.apache.org/repos/asf/eagle/tree/07990e3e
Diff: http://git-wip-us.apache.org/repos/asf/eagle/diff/07990e3e

Branch: refs/heads/master
Commit: 07990e3e7cbda78babada5dfe2b7295e837115a0
Parents: 1c90aa4
Author: zombieJ <[email protected]>
Authored: Tue Feb 28 14:49:14 2017 +0800
Committer: zombieJ <[email protected]>
Committed: Tue Feb 28 14:49:14 2017 +0800

----------------------------------------------------------------------
 .../src/main/webapp/app/dev/public/js/services/notificationSrv.js  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/eagle/blob/07990e3e/eagle-server/src/main/webapp/app/dev/public/js/services/notificationSrv.js
----------------------------------------------------------------------
diff --git 
a/eagle-server/src/main/webapp/app/dev/public/js/services/notificationSrv.js 
b/eagle-server/src/main/webapp/app/dev/public/js/services/notificationSrv.js
index 76f9c45..391edcf 100644
--- a/eagle-server/src/main/webapp/app/dev/public/js/services/notificationSrv.js
+++ b/eagle-server/src/main/webapp/app/dev/public/js/services/notificationSrv.js
@@ -103,7 +103,7 @@
                        });
                }
 
-               if (!'Notification' in window || !'localStorage' in window) {
+               if (!('Notification' in window) || !('localStorage' in window)) 
{
                        // Notification not support
                        console.warn('Browser do not support Notification api. 
Ignore...');
                } else {

Reply via email to