Skip to content
This repository has been archived by the owner on May 21, 2021. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/0.7.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Burgmer committed Aug 9, 2016
2 parents 1805048 + 1a1fe92 commit e1153ea
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# w11k-select Changelog

<a name="0.7.2"></a>
## 0.7.2 (2016-08-09)


### Bug Fixes

* **options:** fix regular expression for parsing options ([645e331b](https://github.com/w11k/w11k-select/commit/645e331b3f8b03a52725f1a703c483ccc73cf096))


<a name="0.7.1"></a>
## 0.7.1 (2016-02-29)

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": "w11k-select",
"version": "0.7.1",
"version": "0.7.2",
"main": [
"dist/w11k-select.js",
"dist/w11k-select.tpl.js",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "w11k-select",
"version": "0.7.1",
"version": "0.7.2",

"description": "single- and multi-select directive for angularjs",
"keywords": [ "angular", "angularjs", "directive", "select", "multi-select", "bootstrap" ],
Expand Down
4 changes: 2 additions & 2 deletions src/w11k-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ angular.module('w11k.select').constant('w11kSelectConfig', {

angular.module('w11k.select').factory('w11kSelectHelper', ['$parse', '$document', function ($parse, $document) {

// value as label for item in collection | filter track by tracking
var OPTIONS_EXP = /^([a-zA-Z][\w\.]*)(?:\s+as\s+([a-zA-Z][\w\.]*))?\s+for\s+(?:([a-zA-Z][\w]*))\s+in\s+([a-zA-Z][\w\.]*(?:\s+\|\s[a-zA-Z][\w\:]*)*)(?:\s+track\sby\s+([a-zA-Z][\w\.]*))?$/;
// value as label for item in collection | filter track by tracking
var OPTIONS_EXP = /^([a-zA-Z][\w\.]*)(?:\s+as\s+([a-zA-Z][\w\.]*))?\s+for\s+(?:([a-zA-Z][\w]*))\s+in\s+([a-zA-Z][\w\.\(\)]*(?:\s+\|\s[a-zA-Z][\w\:_\{\}']*)*)(?:\s+track\sby\s+([a-zA-Z][\w\.]*))?$/;

function extendDeep(dst) {
angular.forEach(arguments, function (obj) {
Expand Down

0 comments on commit e1153ea

Please sign in to comment.