Skip to content

Commit

Permalink
chore(Bump): release 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leocaseiro committed May 22, 2017
1 parent 5e866f3 commit d3634ed
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 27 deletions.
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
gulpfile.js
src
test
.gitignore
.gitignore
.travis.yml
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ Via npm

Via [cdn](https://cdnjs.com/libraries/angular-chosen-localytics)
```html
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-chosen-localytics/1.4.0/angular-chosen.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-chosen-localytics/1.7.0/angular-chosen.min.js"></script>
```



Or download zip file
> [Download v1.6.0](https://github.com/leocaseiro/angular-chosen/archive/1.6.0.zip)
> [Download v1.7.0](https://github.com/leocaseiro/angular-chosen/archive/1.7.0.zip)


Expand Down
12 changes: 6 additions & 6 deletions dist/angular-chosen.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
/**
* angular-chosen-localytics - Angular Chosen directive is an AngularJS Directive that brings the Chosen jQuery in a Angular way
* @version v1.5.1
* @version v1.7.0
* @link http://github.com/leocaseiro/angular-chosen
* @license MIT
*/
(function() {
var chosen,
var chosenModule,
indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };

angular.module('localytics.directives', []);

chosen = angular.module('localytics.directives');
chosenModule = angular.module('localytics.directives');

chosen.provider('chosen', function() {
chosenModule.provider('chosen', function() {
var options;
options = {};
return {
Expand All @@ -25,7 +25,7 @@
};
});

chosen.directive('chosen', [
chosenModule.directive('chosen', [
'chosen', '$timeout', function(config, $timeout) {
var CHOSEN_OPTION_WHITELIST, NG_OPTIONS_REGEXP, isEmpty, snakeCase;
NG_OPTIONS_REGEXP = /^\s*([\s\S]+?)(?:\s+as\s+([\s\S]+?))?(?:\s+group\s+by\s+([\s\S]+?))?\s+for\s+(?:([\$\w][\$\w]*)|(?:\(\s*([\$\w][\$\w]*)\s*,\s*([\$\w][\$\w]*)\s*\)))\s+in\s+([\s\S]+?)(?:\s+track\s+by\s+([\s\S]+?))?$/;
Expand Down Expand Up @@ -53,7 +53,7 @@
require: '?ngModel',
priority: 1,
link: function(scope, element, attr, ngModel) {
var directiveOptions, empty, initOrUpdate, match, options, origRender, startLoading, stopLoading, updateMessage, valuesExpr, viewWatch;
var chosen, directiveOptions, empty, initOrUpdate, match, options, origRender, startLoading, stopLoading, updateMessage, valuesExpr, viewWatch;
scope.disabledValuesHistory = scope.disabledValuesHistory ? scope.disabledValuesHistory : [];
element = $(element);
element.addClass('localytics-chosen');
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.

31 changes: 16 additions & 15 deletions 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.6.0",
"version": "1.7.0",
"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 All @@ -21,27 +21,28 @@
"license": "MIT",
"author": "jr314159",
"contributors": [
"LukeMason",
"leocaseiro",
"stefanvermaas",
"abuggia",
"gaui",
"paulpflug",
"iamnewspecies",
"kfarst",
"dariusriggins",
"charandas",
"failpunk",
"simison",
"ilychkov",
"dariusriggins",
"darlanalves",
"dougludlow",
"Odi55555",
"slobo",
"failpunk",
"frnan",
"gaui",
"iamnewspecies",
"ilychkov",
"kfarst",
"leocaseiro",
"lpsBetty",
"lukeMason",
"nike-17",
"odi55555",
"paulpflug",
"simison",
"slobo",
"stefanvermaas",
"vantanev",
"vstene",
"frnan",
"zlodes"
],
"dependencies": {
Expand Down

0 comments on commit d3634ed

Please sign in to comment.