Skip to content

Commit

Permalink
chore(prepare-release): release 0.11.7
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenVinke committed Jun 27, 2016
1 parent 928cc22 commit 63e08a4
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 2 deletions.
2 changes: 2 additions & 0 deletions dist/amd/common/template-compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', 'aureli
}

$(element).data('viewInstance', view);
} else {
view.bind(ctx, (0, _aureliaBinding.createOverrideContext)(ctx, $parent));
}

view.attached();
Expand Down
2 changes: 2 additions & 0 deletions dist/aurelia-kendoui-bridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -1319,6 +1319,8 @@ export class TemplateCompiler {
// so we can call detached/unbind
// so we store this view instance in the DOM element using JQuery.data
$(element).data('viewInstance', view);
} else {
view.bind(ctx, createOverrideContext(ctx, $parent));
}

view.attached(); // attach it to the DOM
Expand Down
2 changes: 2 additions & 0 deletions dist/commonjs/common/template-compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ var TemplateCompiler = exports.TemplateCompiler = (_dec = (0, _aureliaDependency
}

$(element).data('viewInstance', view);
} else {
view.bind(ctx, (0, _aureliaBinding.createOverrideContext)(ctx, $parent));
}

view.attached();
Expand Down
2 changes: 2 additions & 0 deletions dist/dev/common/template-compiler.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/dev/dist/dev/common/template-compiler.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions dist/es6/common/template-compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ export class TemplateCompiler {
// so we can call detached/unbind
// so we store this view instance in the DOM element using JQuery.data
$(element).data('viewInstance', view);
} else {
view.bind(ctx, createOverrideContext(ctx, $parent));
}

view.attached(); // attach it to the DOM
Expand Down
2 changes: 2 additions & 0 deletions dist/system/common/template-compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ System.register(['aurelia-dependency-injection', 'aurelia-templating', 'aurelia-
}

$(element).data('viewInstance', view);
} else {
view.bind(ctx, createOverrideContext(ctx, $parent));
}

view.attached();
Expand Down
10 changes: 10 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="0.11.7"></a>
## [0.11.7](https://github.com/aurelia-ui-toolkits/aurelia-kendoui-bridge/compare/0.11.6...v0.11.7) (2016-06-27)


### Bug Fixes

* **template-compiler:** bind view even if .au-target is found ([928cc22](https://github.com/aurelia-ui-toolkits/aurelia-kendoui-bridge/commit/928cc22))



<a name="0.11.6"></a>
## [0.11.6](https://github.com/aurelia-ui-toolkits/aurelia-kendoui-bridge/compare/0.11.5...v0.11.6) (2016-06-27)

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-kendoui-bridge",
"version": "0.11.6",
"version": "0.11.7",
"registry": "github",
"description": "A set of Telerik KendoUI wrappers for Aurelia allowing developers to easily use KendoUI components in their Aurelia application.",
"keywords": [
Expand Down

0 comments on commit 63e08a4

Please sign in to comment.