Skip to content

Commit

Permalink
chore(all): prepare release 0.13.15
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jul 30, 2015
1 parent 014185e commit 91724b4
Show file tree
Hide file tree
Showing 8 changed files with 35 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",
"version": "0.13.14",
"version": "0.13.15",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down
6 changes: 5 additions & 1 deletion dist/amd/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -1819,7 +1819,7 @@ define(['exports', 'core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loade
};
}

if (elementInstruction && elementInstruction.type.skipContentProcessing) {
if (elementInstruction && elementInstruction.skipContentProcessing) {
return node.nextSibling;
}

Expand Down Expand Up @@ -2582,6 +2582,8 @@ define(['exports', 'core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loade
var partReplacements = instruction.partReplacements = {};

if (this.processContent(compiler, resources, node, instruction) && node.hasChildNodes()) {
instruction.skipContentProcessing = false;

if (!this.usesShadowDOM) {
var fragment = document.createDocumentFragment(),
currentChild = node.firstChild,
Expand Down Expand Up @@ -2615,6 +2617,8 @@ define(['exports', 'core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loade
currentChild = nextSibling;
}
}
} else {
instruction.skipContentProcessing = true;
}
}

Expand Down
6 changes: 5 additions & 1 deletion dist/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -1675,7 +1675,7 @@ export class ViewCompiler {
};
}

if(elementInstruction && elementInstruction.type.skipContentProcessing){
if(elementInstruction && elementInstruction.skipContentProcessing){
return node.nextSibling;
}

Expand Down Expand Up @@ -2370,6 +2370,8 @@ export class HtmlBehaviorResource {
var partReplacements = instruction.partReplacements = {};

if(this.processContent(compiler, resources, node, instruction) && node.hasChildNodes()){
instruction.skipContentProcessing = false;

if(!this.usesShadowDOM){
var fragment = document.createDocumentFragment(),
currentChild = node.firstChild,
Expand Down Expand Up @@ -2402,6 +2404,8 @@ export class HtmlBehaviorResource {
currentChild = nextSibling;
}
}
}else{
instruction.skipContentProcessing = true;
}
}

Expand Down
6 changes: 5 additions & 1 deletion dist/commonjs/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -1838,7 +1838,7 @@ var ViewCompiler = (function () {
};
}

if (elementInstruction && elementInstruction.type.skipContentProcessing) {
if (elementInstruction && elementInstruction.skipContentProcessing) {
return node.nextSibling;
}

Expand Down Expand Up @@ -2601,6 +2601,8 @@ var HtmlBehaviorResource = (function () {
var partReplacements = instruction.partReplacements = {};

if (this.processContent(compiler, resources, node, instruction) && node.hasChildNodes()) {
instruction.skipContentProcessing = false;

if (!this.usesShadowDOM) {
var fragment = document.createDocumentFragment(),
currentChild = node.firstChild,
Expand Down Expand Up @@ -2634,6 +2636,8 @@ var HtmlBehaviorResource = (function () {
currentChild = nextSibling;
}
}
} else {
instruction.skipContentProcessing = true;
}
}

Expand Down
6 changes: 5 additions & 1 deletion dist/es6/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -1675,7 +1675,7 @@ export class ViewCompiler {
};
}

if(elementInstruction && elementInstruction.type.skipContentProcessing){
if(elementInstruction && elementInstruction.skipContentProcessing){
return node.nextSibling;
}

Expand Down Expand Up @@ -2370,6 +2370,8 @@ export class HtmlBehaviorResource {
var partReplacements = instruction.partReplacements = {};

if(this.processContent(compiler, resources, node, instruction) && node.hasChildNodes()){
instruction.skipContentProcessing = false;

if(!this.usesShadowDOM){
var fragment = document.createDocumentFragment(),
currentChild = node.firstChild,
Expand Down Expand Up @@ -2402,6 +2404,8 @@ export class HtmlBehaviorResource {
currentChild = nextSibling;
}
}
}else{
instruction.skipContentProcessing = true;
}
}

Expand Down
6 changes: 5 additions & 1 deletion dist/system/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -2048,7 +2048,7 @@ System.register(['core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loader'
};
}

if (elementInstruction && elementInstruction.type.skipContentProcessing) {
if (elementInstruction && elementInstruction.skipContentProcessing) {
return node.nextSibling;
}

Expand Down Expand Up @@ -2788,6 +2788,8 @@ System.register(['core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loader'
var partReplacements = instruction.partReplacements = {};

if (this.processContent(compiler, resources, node, instruction) && node.hasChildNodes()) {
instruction.skipContentProcessing = false;

if (!this.usesShadowDOM) {
var fragment = document.createDocumentFragment(),
currentChild = node.firstChild,
Expand Down Expand Up @@ -2821,6 +2823,8 @@ System.register(['core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loader'
currentChild = nextSibling;
}
}
} else {
instruction.skipContentProcessing = true;
}
}

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.15 (2015-07-30)


#### Bug Fixes

* **view-compiler:** properly handle content process skip ([014185ed](http://github.com/aurelia/templating/commit/014185ed849c71d539fa56f629aa58baf086f6bb))


### 0.13.14 (2015-07-30)


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

0 comments on commit 91724b4

Please sign in to comment.