Skip to content

Commit

Permalink
chore(all): prepare release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jan 22, 2015
1 parent c3964e7 commit f9bf4b9
Show file tree
Hide file tree
Showing 19 changed files with 289 additions and 281 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-binding",
"version": "0.3.0",
"version": "0.3.1",
"description": "A modern databinding library for JavaScript and HTML.",
"license": "MIT",
"keywords": [
Expand Down
142 changes: 71 additions & 71 deletions dist/amd/ast.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/amd/binding-expression.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ define(["exports", "./binding-modes"], function (exports, _bindingModes) {

this.source = source;
} else {
var value = this.sourceExpression.eval(source, this.valueConverterLookupFunction);
var value = this.sourceExpression.evaluate(source, this.valueConverterLookupFunction);

if (value !== undefined) {
targetProperty.setValue(value);
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/call-expression.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ define(["exports"], function (exports) {
rest[_key] = arguments[_key];
}

return _this.sourceExpression.eval(source, _this.valueConverterLookupFunction, rest);
return _this.sourceExpression.evaluate(source, _this.valueConverterLookupFunction, rest);
});
},
writable: true,
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/listener-expression.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ define(["exports"], function (exports) {
this._disposeListener = this.eventManager.addEventListener(this.target, this.targetEvent, function (event) {
var prevEvent = source.$event;
source.$event = event;
var result = _this.sourceExpression.eval(source);
var result = _this.sourceExpression.evaluate(source);
source.$event = prevEvent;
if (_this.preventDefault) {
event.preventDefault();
Expand Down
Loading

0 comments on commit f9bf4b9

Please sign in to comment.