Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/1.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
grbsk committed Sep 9, 2016
2 parents 84f5169 + 0aad081 commit d7cbd35
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions angular-idle.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*** Directives and services for responding to idle users in AngularJS
* @author Mike Grabski <[email protected]>
* @version v1.3.0
* @version v1.3.1
* @link https://github.com/HackedByChinese/ng-idle.git
* @license MIT
*/
Expand Down Expand Up @@ -341,7 +341,7 @@ angular.module('ngIdle.idle', ['ngIdle.keepalive', 'ngIdle.localStorage'])
};

if ($window.addEventListener) $window.addEventListener('storage', wrap, false);
else $window.attachEvent('onstorage', wrap);
else if ($window.attachEvent) $window.attachEvent('onstorage', wrap);

return svc;
}
Expand Down
2 changes: 1 addition & 1 deletion angular-idle.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d7cbd35

Please sign in to comment.