Skip to content

Commit

Permalink
chore(all): prepare release 0.13.13
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jul 30, 2015
1 parent 589c9d7 commit 20447f9
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 17 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",
"version": "0.13.12",
"version": "0.13.13",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down
6 changes: 3 additions & 3 deletions dist/amd/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -1676,13 +1676,13 @@ define(['exports', 'core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loade

if (tagName === 'content') {
if (targetLightDOM) {
instructions.push({
auTargetID = makeIntoInstructionTarget(node);
instructions[auTargetID] = {
parentInjectorId: parentInjectorId,
contentSelector: true,
selector: node.getAttribute('select'),
suppressBind: true
});
makeIntoInstructionTarget(node);
};
}
return node.nextSibling;
} else if (tagName === 'template') {
Expand Down
6 changes: 3 additions & 3 deletions dist/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -1530,13 +1530,13 @@ export class ViewCompiler {

if(tagName === 'content'){
if(targetLightDOM){
instructions.push({
auTargetID = makeIntoInstructionTarget(node);
instructions[auTargetID] = {
parentInjectorId: parentInjectorId,
contentSelector: true,
selector:node.getAttribute('select'),
suppressBind: true
});
makeIntoInstructionTarget(node);
};
}
return node.nextSibling;
} else if(tagName === 'template'){
Expand Down
6 changes: 3 additions & 3 deletions dist/commonjs/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -1695,13 +1695,13 @@ var ViewCompiler = (function () {

if (tagName === 'content') {
if (targetLightDOM) {
instructions.push({
auTargetID = makeIntoInstructionTarget(node);
instructions[auTargetID] = {
parentInjectorId: parentInjectorId,
contentSelector: true,
selector: node.getAttribute('select'),
suppressBind: true
});
makeIntoInstructionTarget(node);
};
}
return node.nextSibling;
} else if (tagName === 'template') {
Expand Down
6 changes: 3 additions & 3 deletions dist/es6/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -1530,13 +1530,13 @@ export class ViewCompiler {

if(tagName === 'content'){
if(targetLightDOM){
instructions.push({
auTargetID = makeIntoInstructionTarget(node);
instructions[auTargetID] = {
parentInjectorId: parentInjectorId,
contentSelector: true,
selector:node.getAttribute('select'),
suppressBind: true
});
makeIntoInstructionTarget(node);
};
}
return node.nextSibling;
} else if(tagName === 'template'){
Expand Down
6 changes: 3 additions & 3 deletions dist/system/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -1905,13 +1905,13 @@ System.register(['core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loader'

if (tagName === 'content') {
if (targetLightDOM) {
instructions.push({
auTargetID = makeIntoInstructionTarget(node);
instructions[auTargetID] = {
parentInjectorId: parentInjectorId,
contentSelector: true,
selector: node.getAttribute('select'),
suppressBind: true
});
makeIntoInstructionTarget(node);
};
}
return node.nextSibling;
} else if (tagName === 'template') {
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.13 (2015-07-29)


#### Bug Fixes

* **view-compiler:** missed update to content projection with new instruction lookup ([589c9d7e](http://github.com/aurelia/templating/commit/589c9d7e8c5cd27812c8059f8b88481844657992))


### 0.13.12 (2015-07-29)


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",
"version": "0.13.12",
"version": "0.13.13",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 20447f9

Please sign in to comment.