Skip to content

Commit

Permalink
chore(all): prepare release 0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jan 25, 2015
1 parent 212a13d commit 5ec7efb
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating-binding",
"version": "0.8.2",
"version": "0.8.3",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
Expand Down
6 changes: 4 additions & 2 deletions dist/amd/binding-language.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,13 +244,15 @@ define(["exports", "aurelia-templating", "aurelia-binding", "./syntax-interprete
source = this.source,
valueConverterLookupFunction = this.valueConverterLookupFunction,
i,
ii;
ii,
temp;

for (i = 0, ii = parts.length; i < ii; ++i) {
if (i % 2 === 0) {
value += parts[i];
} else {
value += parts[i].evaluate(source, valueConverterLookupFunction).toString();
temp = parts[i].evaluate(source, valueConverterLookupFunction);
value += temp ? temp.toString() : "";
}
}

Expand Down
6 changes: 4 additions & 2 deletions dist/commonjs/binding-language.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,13 +243,15 @@ var InterpolationBinding = (function () {
source = this.source,
valueConverterLookupFunction = this.valueConverterLookupFunction,
i,
ii;
ii,
temp;

for (i = 0, ii = parts.length; i < ii; ++i) {
if (i % 2 === 0) {
value += parts[i];
} else {
value += parts[i].evaluate(source, valueConverterLookupFunction).toString();
temp = parts[i].evaluate(source, valueConverterLookupFunction);
value += temp ? temp.toString() : "";
}
}

Expand Down
5 changes: 3 additions & 2 deletions dist/es6/binding-language.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,13 +175,14 @@ class InterpolationBinding {
parts = this.parts,
source = this.source,
valueConverterLookupFunction = this.valueConverterLookupFunction,
i, ii;
i, ii, temp;

for(i = 0, ii = parts.length; i < ii; ++i){
if (i % 2 === 0) {
value += parts[i];
} else {
value += parts[i].evaluate(source, valueConverterLookupFunction).toString();
temp = parts[i].evaluate(source, valueConverterLookupFunction);
value += (temp ? temp.toString() : '');
}
}

Expand Down
6 changes: 4 additions & 2 deletions dist/system/binding-language.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,13 +248,15 @@ System.register(["aurelia-templating", "aurelia-binding", "./syntax-interpreter"
source = this.source,
valueConverterLookupFunction = this.valueConverterLookupFunction,
i,
ii;
ii,
temp;

for (i = 0, ii = parts.length; i < ii; ++i) {
if (i % 2 === 0) {
value += parts[i];
} else {
value += parts[i].evaluate(source, valueConverterLookupFunction).toString();
temp = parts[i].evaluate(source, valueConverterLookupFunction);
value += temp ? temp.toString() : "";
}
}

Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.8.3 (2015-01-25)


#### Bug Fixes

* **interpolation-binding:** errors on undefined or null expression eval ([212a13d0](http://github.com/aurelia/templating-binding/commit/212a13d0a13f947e0974e1380af7a3eb82b679eb))


### 0.8.2 (2015-01-24)


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": "aurelia-templating-binding",
"version": "0.8.2",
"version": "0.8.3",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 5ec7efb

Please sign in to comment.