Skip to content

Commit 166c10a

Browse files
chore(all): prepare release 0.17.4
1 parent b3db0fd commit 166c10a

File tree

7 files changed

+22
-12
lines changed

7 files changed

+22
-12
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.17.3",
3+
"version": "0.17.4",
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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3533,7 +3533,7 @@ define(['exports', 'core-js', 'aurelia-logging', 'aurelia-metadata', 'aurelia-pa
35333533
}
35343534
}
35353535

3536-
groupedMutations.forEach(function (key, value) {
3536+
groupedMutations.forEach(function (value, key) {
35373537
if (key.changeHandler !== null) {
35383538
key.viewModel[key.changeHandler](value);
35393539
}
@@ -3624,7 +3624,9 @@ define(['exports', 'core-js', 'aurelia-logging', 'aurelia-metadata', 'aurelia-pa
36243624
};
36253625

36263626
ChildObserverBinder.prototype.onAdd = function onAdd(element) {
3627-
if (element.matches(this.selector)) {
3627+
var selector = this.selector;
3628+
3629+
if (element.matches(selector)) {
36283630
var value = element.au && element.au.controller ? element.au.controller.viewModel : element;
36293631

36303632
if (this.all) {

dist/aurelia-templating.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4198,7 +4198,7 @@ function onChildChange(mutations, observer) {
41984198
}
41994199
}
42004200

4201-
groupedMutations.forEach((key, value) => {
4201+
groupedMutations.forEach((value, key) => {
42024202
if (key.changeHandler !== null) {
42034203
key.viewModel[key.changeHandler](value);
42044204
}
@@ -4287,7 +4287,9 @@ class ChildObserverBinder {
42874287
}
42884288

42894289
onAdd(element) {
4290-
if (element.matches(this.selector)) {
4290+
let selector = this.selector;
4291+
4292+
if (element.matches(selector)) {
42914293
let value = element.au && element.au.controller ? element.au.controller.viewModel : element;
42924294

42934295
if (this.all) {

dist/commonjs/aurelia-templating.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3554,7 +3554,7 @@ function onChildChange(mutations, observer) {
35543554
}
35553555
}
35563556

3557-
groupedMutations.forEach(function (key, value) {
3557+
groupedMutations.forEach(function (value, key) {
35583558
if (key.changeHandler !== null) {
35593559
key.viewModel[key.changeHandler](value);
35603560
}
@@ -3645,7 +3645,9 @@ var ChildObserverBinder = (function () {
36453645
};
36463646

36473647
ChildObserverBinder.prototype.onAdd = function onAdd(element) {
3648-
if (element.matches(this.selector)) {
3648+
var selector = this.selector;
3649+
3650+
if (element.matches(selector)) {
36493651
var value = element.au && element.au.controller ? element.au.controller.viewModel : element;
36503652

36513653
if (this.all) {

dist/es6/aurelia-templating.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4198,7 +4198,7 @@ function onChildChange(mutations, observer) {
41984198
}
41994199
}
42004200

4201-
groupedMutations.forEach((key, value) => {
4201+
groupedMutations.forEach((value, key) => {
42024202
if (key.changeHandler !== null) {
42034203
key.viewModel[key.changeHandler](value);
42044204
}
@@ -4287,7 +4287,9 @@ class ChildObserverBinder {
42874287
}
42884288

42894289
onAdd(element) {
4290-
if (element.matches(this.selector)) {
4290+
let selector = this.selector;
4291+
4292+
if (element.matches(selector)) {
42914293
let value = element.au && element.au.controller ? element.au.controller.viewModel : element;
42924294

42934295
if (this.all) {

dist/system/aurelia-templating.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ System.register(['core-js', 'aurelia-logging', 'aurelia-metadata', 'aurelia-path
454454
}
455455
}
456456

457-
groupedMutations.forEach(function (key, value) {
457+
groupedMutations.forEach(function (value, key) {
458458
if (key.changeHandler !== null) {
459459
key.viewModel[key.changeHandler](value);
460460
}
@@ -3830,7 +3830,9 @@ System.register(['core-js', 'aurelia-logging', 'aurelia-metadata', 'aurelia-path
38303830
};
38313831

38323832
ChildObserverBinder.prototype.onAdd = function onAdd(element) {
3833-
if (element.matches(this.selector)) {
3833+
var selector = this.selector;
3834+
3835+
if (element.matches(selector)) {
38343836
var value = element.au && element.au.controller ? element.au.controller.viewModel : element;
38353837

38363838
if (this.all) {

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.17.3",
3+
"version": "0.17.4",
44
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
55
"keywords": [
66
"aurelia",

0 commit comments

Comments
 (0)