Skip to content

Commit

Permalink
chore(all): prepare release 0.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Aug 14, 2015
1 parent ea230c8 commit 3dfa30a
Show file tree
Hide file tree
Showing 8 changed files with 15 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.14.1",
"version": "0.14.2",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ define(['exports', 'core-js', 'aurelia-logging', 'aurelia-metadata', 'aurelia-pa
var parser = document.createElement('div');
parser.innerHTML = markup;

var temp = parser.firstChild;
var temp = parser.firstElementChild;

if (needsTemplateFixup) {
temp.content = document.createDocumentFragment();
Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function createTemplateFromMarkup(markup:string):Element{
let parser = document.createElement('div');
parser.innerHTML = markup;

let temp = parser.firstChild;
let temp = parser.firstElementChild;

if(needsTemplateFixup){
temp.content = document.createDocumentFragment();
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function createTemplateFromMarkup(markup) {
var parser = document.createElement('div');
parser.innerHTML = markup;

var temp = parser.firstChild;
var temp = parser.firstElementChild;

if (needsTemplateFixup) {
temp.content = document.createDocumentFragment();
Expand Down
2 changes: 1 addition & 1 deletion dist/es6/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function createTemplateFromMarkup(markup:string):Element{
let parser = document.createElement('div');
parser.innerHTML = markup;

let temp = parser.firstChild;
let temp = parser.firstElementChild;

if(needsTemplateFixup){
temp.content = document.createDocumentFragment();
Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ System.register(['core-js', 'aurelia-logging', 'aurelia-metadata', 'aurelia-path
var parser = document.createElement('div');
parser.innerHTML = markup;

var temp = parser.firstChild;
var temp = parser.firstElementChild;

if (needsTemplateFixup) {
temp.content = document.createDocumentFragment();
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.14.2 (2015-08-14)


#### Bug Fixes

* **dom:** return firstElementChild from parsed template markup ([ea230c84](http://github.com/aurelia/templating/commit/ea230c84f80ac629db6d0add4c1429d5b6fe2f9e))


### 0.14.1 (2015-08-14)


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

0 comments on commit 3dfa30a

Please sign in to comment.