Skip to content

Commit

Permalink
bump(1.4.1)
Browse files Browse the repository at this point in the history
Closes #204
  • Loading branch information
leocaseiro committed Jul 3, 2016
1 parent eaf9f98 commit 2b2f7dd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions dist/angular-chosen.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* angular-chosen-localytics - Angular Chosen directive is an AngularJS Directive that brings the Chosen jQuery in a Angular way
* @version v1.3.0
* @version v1.4.1
* @link http://github.com/leocaseiro/angular-chosen
* @license MIT
*/
Expand Down Expand Up @@ -45,7 +45,9 @@
angular.forEach(attr, function(value, key) {
if (indexOf.call(CHOSEN_OPTION_WHITELIST, key) >= 0) {
return attr.$observe(key, function(value) {
options[snakeCase(key)] = String(element.attr(attr.$attr[key])).slice(0, 2) === '{{' ? value : scope.$eval(value);
var prefix;
prefix = String(element.attr(attr.$attr[key])).slice(0, 2);
options[snakeCase(key)] = prefix === '{{' ? value : scope.$eval(value);
return updateMessage();
});
}
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-chosen.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
Expand Up @@ -2,7 +2,7 @@
"name": "angular-chosen-localytics",
"filename": "chosen.js",
"main": "dist/angular-chosen.js",
"version": "1.4.0",
"version": "1.4.1",
"description": "Angular Chosen directive is an AngularJS Directive that brings the Chosen jQuery in a Angular way",
"homepage": "http://github.com/leocaseiro/angular-chosen",
"repository": {
Expand Down

0 comments on commit 2b2f7dd

Please sign in to comment.