Skip to content

Commit 20447f9

Browse files
chore(all): prepare release 0.13.13
1 parent 589c9d7 commit 20447f9

File tree

8 files changed

+25
-17
lines changed

8 files changed

+25
-17
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-templating",
3-
"version": "0.13.12",
3+
"version": "0.13.13",
44
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
55
"keywords": [
66
"aurelia",

dist/amd/aurelia-templating.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1676,13 +1676,13 @@ define(['exports', 'core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loade
16761676

16771677
if (tagName === 'content') {
16781678
if (targetLightDOM) {
1679-
instructions.push({
1679+
auTargetID = makeIntoInstructionTarget(node);
1680+
instructions[auTargetID] = {
16801681
parentInjectorId: parentInjectorId,
16811682
contentSelector: true,
16821683
selector: node.getAttribute('select'),
16831684
suppressBind: true
1684-
});
1685-
makeIntoInstructionTarget(node);
1685+
};
16861686
}
16871687
return node.nextSibling;
16881688
} else if (tagName === 'template') {

dist/aurelia-templating.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1530,13 +1530,13 @@ export class ViewCompiler {
15301530

15311531
if(tagName === 'content'){
15321532
if(targetLightDOM){
1533-
instructions.push({
1533+
auTargetID = makeIntoInstructionTarget(node);
1534+
instructions[auTargetID] = {
15341535
parentInjectorId: parentInjectorId,
15351536
contentSelector: true,
15361537
selector:node.getAttribute('select'),
15371538
suppressBind: true
1538-
});
1539-
makeIntoInstructionTarget(node);
1539+
};
15401540
}
15411541
return node.nextSibling;
15421542
} else if(tagName === 'template'){

dist/commonjs/aurelia-templating.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1695,13 +1695,13 @@ var ViewCompiler = (function () {
16951695

16961696
if (tagName === 'content') {
16971697
if (targetLightDOM) {
1698-
instructions.push({
1698+
auTargetID = makeIntoInstructionTarget(node);
1699+
instructions[auTargetID] = {
16991700
parentInjectorId: parentInjectorId,
17001701
contentSelector: true,
17011702
selector: node.getAttribute('select'),
17021703
suppressBind: true
1703-
});
1704-
makeIntoInstructionTarget(node);
1704+
};
17051705
}
17061706
return node.nextSibling;
17071707
} else if (tagName === 'template') {

dist/es6/aurelia-templating.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1530,13 +1530,13 @@ export class ViewCompiler {
15301530

15311531
if(tagName === 'content'){
15321532
if(targetLightDOM){
1533-
instructions.push({
1533+
auTargetID = makeIntoInstructionTarget(node);
1534+
instructions[auTargetID] = {
15341535
parentInjectorId: parentInjectorId,
15351536
contentSelector: true,
15361537
selector:node.getAttribute('select'),
15371538
suppressBind: true
1538-
});
1539-
makeIntoInstructionTarget(node);
1539+
};
15401540
}
15411541
return node.nextSibling;
15421542
} else if(tagName === 'template'){

dist/system/aurelia-templating.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1905,13 +1905,13 @@ System.register(['core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loader'
19051905

19061906
if (tagName === 'content') {
19071907
if (targetLightDOM) {
1908-
instructions.push({
1908+
auTargetID = makeIntoInstructionTarget(node);
1909+
instructions[auTargetID] = {
19091910
parentInjectorId: parentInjectorId,
19101911
contentSelector: true,
19111912
selector: node.getAttribute('select'),
19121913
suppressBind: true
1913-
});
1914-
makeIntoInstructionTarget(node);
1914+
};
19151915
}
19161916
return node.nextSibling;
19171917
} else if (tagName === 'template') {

doc/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### 0.13.13 (2015-07-29)
2+
3+
4+
#### Bug Fixes
5+
6+
* **view-compiler:** missed update to content projection with new instruction lookup ([589c9d7e](http://github.com/aurelia/templating/commit/589c9d7e8c5cd27812c8059f8b88481844657992))
7+
8+
19
### 0.13.12 (2015-07-29)
210

311

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-templating",
3-
"version": "0.13.12",
3+
"version": "0.13.13",
44
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
55
"keywords": [
66
"aurelia",

0 commit comments

Comments
 (0)