Skip to content

Commit

Permalink
tests(history): fix broken validation from cef6708
Browse files Browse the repository at this point in the history
  • Loading branch information
perrygovier committed Jun 11, 2015
1 parent 32da5cd commit 6bd198d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/angular/service/history.js
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ function($rootScope, $state, $location, $window, $timeout, $ionicViewSwitcher, $
extend(nextViewOptions, opts);
if (nextViewOptions.expire) {
deregisterStateChangeListener = $rootScope.$on('$stateChangeSuccess', function() {
nextViewExpireTimer = $timeout(function(){
nextViewExpireTimer = $timeout(function() {
nextViewOptions = null;
}, nextViewOptions.expire);
});
Expand Down

0 comments on commit 6bd198d

Please sign in to comment.