Skip to content

Commit fea7530

Browse files
committed
#128 Typo
1 parent 3494c19 commit fea7530

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

build/angular-routing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,7 @@ angular.module('dotjem.routing').provider('$pipeline', $PipelineProvider).config
10361036
'$changes', '$context', '$state', '$q', '$rootScope', function ($changes, $context, $state, $q, $rootScope) {
10371037
if ($changes.changed.length < 1) {
10381038
if ($changes.paramChanges) {
1039-
$state.params = $state.current.$params = $context.toState.params;
1039+
$state.params = $state.current.$params = $context.toState.$params;
10401040
if ($changes.to.reloadOnOptional) {
10411041
$rootScope.$broadcast(EVENTS.STATE_CHANGE_SUCCESS, $state.current);
10421042
} else {

build/angular-routing.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gh-pages/assets/scripts/angular-routing/impl/angular-routing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,7 @@ angular.module('dotjem.routing').provider('$pipeline', $PipelineProvider).config
10361036
'$changes', '$context', '$state', '$q', '$rootScope', function ($changes, $context, $state, $q, $rootScope) {
10371037
if ($changes.changed.length < 1) {
10381038
if ($changes.paramChanges) {
1039-
$state.params = $state.current.$params = $context.toState.params;
1039+
$state.params = $state.current.$params = $context.toState.$params;
10401040
if ($changes.to.reloadOnOptional) {
10411041
$rootScope.$broadcast(EVENTS.STATE_CHANGE_SUCCESS, $state.current);
10421042
} else {

gh-pages/assets/scripts/angular-routing/impl/angular-routing.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/pipeline.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ angular.module('dotjem.routing').provider('$pipeline', $PipelineProvider)
192192
pipeline.append('step4', ['$changes', '$context', '$state', '$q', '$rootScope', function ($changes, $context, $state, $q, $rootScope) {
193193
if ($changes.changed.length < 1) {
194194
if ($changes.paramChanges) {
195-
$state.params = $state.current.$params = $context.toState.params;
195+
$state.params = $state.current.$params = $context.toState.$params;
196196
if ($changes.to.reloadOnOptional) {
197197
$rootScope.$broadcast(EVENTS.STATE_CHANGE_SUCCESS, $state.current);
198198
} else {

0 commit comments

Comments
 (0)