Skip to content

Commit

Permalink
1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
artch committed Aug 12, 2014
1 parent 0aaa25b commit 2706f22
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.3.1 (2014-08-12)

- Fixed a compatibility bug in IE8 ([0aaa2](https://github.com/artch/angular-route-segment/commit/0aaa25be27a8d0b7e36f2e07a9a303b9b3f3c3f5)) thanks to [jincod](https://github.com/jincod).

# 1.3.0 (2014-05-15)

## Features
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-route-segment",
"version": "1.3.0",
"version": "1.3.1",
"main": "build/angular-route-segment.js",
"ignore": [
"**/.*",
Expand Down
9 changes: 6 additions & 3 deletions build/angular-route-segment.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* angular-route-segment 1.3.0
* angular-route-segment 1.3.1
* https://angular-route-segment.com
* @author Artem Chivchalov
* @license MIT License http://opensource.org/licenses/MIT
Expand Down Expand Up @@ -300,7 +300,7 @@ mod.provider( '$routeSegment',
curSegment = null;
for (var i in children) {
(function(i, children, index) {
if (children[i].params.default) {
if (children[i].params['default']) {
defaultChildUpdatePromise = defaultChildUpdatePromise.then(function () {
return updateSegment(index, {name: i, params: children[i].params})
.then(function (result) {
Expand All @@ -311,6 +311,8 @@ mod.provider( '$routeSegment',
lastUpdateIndex = index;
}
})(i, children, index);


}
}
}
Expand Down Expand Up @@ -542,7 +544,8 @@ mod.filter('routeSegmentParam', ['$routeSegment', function($routeSegment) {
}]);


})(angular);;'use strict';
})(angular);
;'use strict';

/**
* appViewSegment directive
Expand Down
4 changes: 2 additions & 2 deletions build/angular-route-segment.min.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-route-segment",
"version": "1.3.0",
"version": "1.3.1",
"dependencies": {
"grunt": "",
"grunt-contrib-uglify": "",
Expand Down
2 changes: 2 additions & 0 deletions src/route-segment.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,8 @@ mod.provider( '$routeSegment',
lastUpdateIndex = index;
}
})(i, children, index);


}
}
}
Expand Down

2 comments on commit 2706f22

@kuraga
Copy link

@kuraga kuraga commented on 2706f22 Sep 16, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not tagged...

@artch
Copy link
Owner Author

@artch artch commented on 2706f22 Sep 16, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, my fault, thanks.

Please sign in to comment.