Skip to content

Commit

Permalink
#128 Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jeme committed Mar 8, 2015
1 parent 3494c19 commit fea7530
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/angular-routing.js
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ angular.module('dotjem.routing').provider('$pipeline', $PipelineProvider).config
'$changes', '$context', '$state', '$q', '$rootScope', function ($changes, $context, $state, $q, $rootScope) {
if ($changes.changed.length < 1) {
if ($changes.paramChanges) {
$state.params = $state.current.$params = $context.toState.params;
$state.params = $state.current.$params = $context.toState.$params;
if ($changes.to.reloadOnOptional) {
$rootScope.$broadcast(EVENTS.STATE_CHANGE_SUCCESS, $state.current);
} else {
Expand Down
2 changes: 1 addition & 1 deletion build/angular-routing.min.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ angular.module('dotjem.routing').provider('$pipeline', $PipelineProvider).config
'$changes', '$context', '$state', '$q', '$rootScope', function ($changes, $context, $state, $q, $rootScope) {
if ($changes.changed.length < 1) {
if ($changes.paramChanges) {
$state.params = $state.current.$params = $context.toState.params;
$state.params = $state.current.$params = $context.toState.$params;
if ($changes.to.reloadOnOptional) {
$rootScope.$broadcast(EVENTS.STATE_CHANGE_SUCCESS, $state.current);
} else {
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ angular.module('dotjem.routing').provider('$pipeline', $PipelineProvider)
pipeline.append('step4', ['$changes', '$context', '$state', '$q', '$rootScope', function ($changes, $context, $state, $q, $rootScope) {
if ($changes.changed.length < 1) {
if ($changes.paramChanges) {
$state.params = $state.current.$params = $context.toState.params;
$state.params = $state.current.$params = $context.toState.$params;
if ($changes.to.reloadOnOptional) {
$rootScope.$broadcast(EVENTS.STATE_CHANGE_SUCCESS, $state.current);
} else {
Expand Down

0 comments on commit fea7530

Please sign in to comment.