Skip to content
This repository was archived by the owner on Aug 24, 2017. It is now read-only.

Commit 27a38b8

Browse files
author
Christopher Hiller
committed
0.2.4 bump and object reference fix
1 parent 3629e73 commit 27a38b8

13 files changed

+29
-20
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Pure AngularJS tagging widget with typeahead support courtesy of [ui-bootstrap](
66
Current Version
77
---------------
88
```
9-
0.2.3
9+
0.2.4
1010
```
1111

1212

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-tags",
3-
"version": "0.2.3",
4-
"main": "dist/angular-tags-0.2.3.js",
3+
"version": "0.2.4",
4+
"main": "dist/angular-tags-0.2.4.js",
55
"dependencies": {
66
"angular-ui-bootstrap-bower": "~0.6.0",
77
"angular": "1.2.0-rc.2",

dist/angular-tags-0.2.3-tpls.js renamed to dist/angular-tags-0.2.4-tpls.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ angular.module("templates/tag.html", []).run(["$templateCache", function($templa
521521
}
522522
o = {};
523523
if (angular.isObject(obj.value)) {
524-
o = angular.extend(angular.extend(o, obj.value), {
524+
o = angular.extend(obj.value, {
525525
name: srcResult.viewMapper(scope.$parent, locals),
526526
value: value,
527527
group: group
@@ -609,10 +609,10 @@ angular.module("templates/tag.html", []).run(["$templateCache", function($templa
609609

610610
// remove already used tags
611611
i = scope.tags.length;
612-
while(i--) {
612+
while (i--) {
613613
scope._filterSrcTags(scope.tags[i]);
614614
}
615-
615+
616616
// emit identifier
617617
scope.$id = ++id;
618618
scope.$emit('decipher.tags.initialized', {

dist/angular-tags-0.2.3-tpls.map.js renamed to dist/angular-tags-0.2.4-tpls.map.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)