Skip to content

Commit

Permalink
chore(all): prepare release 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jul 13, 2015
1 parent 2ec1888 commit d9007d6
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 7 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.13.0",
"version": "0.13.1",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ define(['exports', 'aurelia-binding', 'aurelia-templating', 'aurelia-logging'],
var tagName = element.tagName.toLowerCase();

if (tagName === 'input') {
return attrName === 'value' || attrName === 'checked' ? _aureliaBinding.bindingMode.twoWay : _aureliaBinding.bindingMode.oneWay;
return attrName === 'value' || attrName === 'checked' || attrName === 'files' ? _aureliaBinding.bindingMode.twoWay : _aureliaBinding.bindingMode.oneWay;
} else if (tagName == 'textarea' || tagName == 'select') {
return attrName == 'value' ? _aureliaBinding.bindingMode.twoWay : _aureliaBinding.bindingMode.oneWay;
} else if (attrName === 'textcontent' || attrName === 'innerhtml') {
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ var SyntaxInterpreter = (function () {
var tagName = element.tagName.toLowerCase();

if (tagName === 'input') {
return attrName === 'value' || attrName === 'checked' ? _aureliaBinding.bindingMode.twoWay : _aureliaBinding.bindingMode.oneWay;
return attrName === 'value' || attrName === 'checked' || attrName === 'files' ? _aureliaBinding.bindingMode.twoWay : _aureliaBinding.bindingMode.oneWay;
} else if (tagName == 'textarea' || tagName == 'select') {
return attrName == 'value' ? _aureliaBinding.bindingMode.twoWay : _aureliaBinding.bindingMode.oneWay;
} else if (attrName === 'textcontent' || attrName === 'innerhtml') {
Expand Down
2 changes: 1 addition & 1 deletion dist/es6/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class SyntaxInterpreter {
var tagName = element.tagName.toLowerCase();

if(tagName === 'input'){
return attrName === 'value' || attrName === 'checked' ? bindingMode.twoWay : bindingMode.oneWay;
return attrName === 'value' || attrName === 'checked' || attrName === 'files' ? bindingMode.twoWay : bindingMode.oneWay;
}else if(tagName == 'textarea' || tagName == 'select'){
return attrName == 'value' ? bindingMode.twoWay : bindingMode.oneWay;
}else if(attrName === 'textcontent' || attrName === 'innerhtml'){
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class SyntaxInterpreter {
var tagName = element.tagName.toLowerCase();

if(tagName === 'input'){
return attrName === 'value' || attrName === 'checked' ? bindingMode.twoWay : bindingMode.oneWay;
return attrName === 'value' || attrName === 'checked' || attrName === 'files' ? bindingMode.twoWay : bindingMode.oneWay;
}else if(tagName == 'textarea' || tagName == 'select'){
return attrName == 'value' ? bindingMode.twoWay : bindingMode.oneWay;
}else if(attrName === 'textcontent' || attrName === 'innerhtml'){
Expand Down
2 changes: 1 addition & 1 deletion dist/system/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ System.register(['aurelia-binding', 'aurelia-templating', 'aurelia-logging'], fu
var tagName = element.tagName.toLowerCase();

if (tagName === 'input') {
return attrName === 'value' || attrName === 'checked' ? bindingMode.twoWay : bindingMode.oneWay;
return attrName === 'value' || attrName === 'checked' || attrName === 'files' ? bindingMode.twoWay : bindingMode.oneWay;
} else if (tagName == 'textarea' || tagName == 'select') {
return attrName == 'value' ? bindingMode.twoWay : bindingMode.oneWay;
} else if (attrName === 'textcontent' || attrName === 'innerhtml') {
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.13.1 (2015-07-13)


#### Features

* **input:** Adds default binding mode for input type file ([a6b34b67](http://github.com/aurelia/templating-binding/commit/a6b34b6738588471d7fc86f452b7ef3ea72c2d9c))


## 0.13.0 (2015-07-02)


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.13.0",
"version": "0.13.1",
"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 d9007d6

Please sign in to comment.