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

Commit

Permalink
Merge pull request #8 from boneskull/master
Browse files Browse the repository at this point in the history
0.2.4 bump and object reference fix
  • Loading branch information
Christopher Hiller committed Sep 20, 2013
2 parents c1f7784 + 27a38b8 commit 24603d4
Show file tree
Hide file tree
Showing 13 changed files with 29 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Pure AngularJS tagging widget with typeahead support courtesy of [ui-bootstrap](
Current Version
---------------
```
0.2.3
0.2.4
```


Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-tags",
"version": "0.2.3",
"main": "dist/angular-tags-0.2.3.js",
"version": "0.2.4",
"main": "dist/angular-tags-0.2.4.js",
"dependencies": {
"angular-ui-bootstrap-bower": "~0.6.0",
"angular": "1.2.0-rc.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ angular.module("templates/tag.html", []).run(["$templateCache", function($templa
}
o = {};
if (angular.isObject(obj.value)) {
o = angular.extend(angular.extend(o, obj.value), {
o = angular.extend(obj.value, {
name: srcResult.viewMapper(scope.$parent, locals),
value: value,
group: group
Expand Down Expand Up @@ -609,10 +609,10 @@ angular.module("templates/tag.html", []).run(["$templateCache", function($templa

// remove already used tags
i = scope.tags.length;
while(i--) {
while (i--) {
scope._filterSrcTags(scope.tags[i]);
}

// emit identifier
scope.$id = ++id;
scope.$emit('decipher.tags.initialized', {
Expand Down

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

Loading

0 comments on commit 24603d4

Please sign in to comment.