Skip to content

Commit 5681b02

Browse files
committed
Remove extra semicolon
1 parent f108b9f commit 5681b02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/angularJwt/services/authManager.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ angular.module('angular-jwt.authManager', [])
9090

9191
if ($injector.has('$transition')) {
9292
var $transitions = $injector.get('$transitions');
93-
$transitions.onStart({}, verifyState);;
93+
$transitions.onStart({}, verifyState);
9494
} else {
9595
var eventName = ($injector.has('$state')) ? '$stateChangeStart' : '$routeChangeStart';
9696
$rootScope.$on(eventName, verifyRoute);
9797
}
9898

99-
99+
100100

101101
return {
102102
authenticate: authenticate,

0 commit comments

Comments
 (0)