Skip to content

Commit

Permalink
chore(all): add latest build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
AureliaEffect committed Apr 10, 2019
1 parent 8a2574d commit 1886552
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/amd/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -3370,7 +3370,7 @@ define(['exports', 'aurelia-logging', 'aurelia-pal', 'aurelia-task-queue', 'aure
if (this.count === 0) {
emLogger.warn('The same EventListener was disposed multiple times.');
} else if (--this.count === 0) {
_aureliaPal.DOM.removeEventListener(this.eventName, handleDelegatedEvent, false);
_aureliaPal.DOM.removeEventListener(this.eventName, handleCapturedEvent, true);
}
};

Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -3277,7 +3277,7 @@ class CapturedHandlerEntry {
if (this.count === 0) {
emLogger.warn('The same EventListener was disposed multiple times.');
} else if (--this.count === 0) {
DOM.removeEventListener(this.eventName, handleDelegatedEvent, false);
DOM.removeEventListener(this.eventName, handleCapturedEvent, true);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -3323,7 +3323,7 @@ var CapturedHandlerEntry = function () {
if (this.count === 0) {
emLogger.warn('The same EventListener was disposed multiple times.');
} else if (--this.count === 0) {
_aureliaPal.DOM.removeEventListener(this.eventName, handleDelegatedEvent, false);
_aureliaPal.DOM.removeEventListener(this.eventName, handleCapturedEvent, true);
}
};

Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -3074,7 +3074,7 @@ let CapturedHandlerEntry = class CapturedHandlerEntry {
if (this.count === 0) {
emLogger.warn('The same EventListener was disposed multiple times.');
} else if (--this.count === 0) {
DOM.removeEventListener(this.eventName, handleDelegatedEvent, false);
DOM.removeEventListener(this.eventName, handleCapturedEvent, true);
}
}
};
Expand Down
2 changes: 1 addition & 1 deletion dist/native-modules/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -3283,7 +3283,7 @@ var CapturedHandlerEntry = function () {
if (this.count === 0) {
emLogger.warn('The same EventListener was disposed multiple times.');
} else if (--this.count === 0) {
DOM.removeEventListener(this.eventName, handleDelegatedEvent, false);
DOM.removeEventListener(this.eventName, handleCapturedEvent, true);
}
};

Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-binding.js
Original file line number Diff line number Diff line change
Expand Up @@ -3601,7 +3601,7 @@ System.register(['aurelia-logging', 'aurelia-pal', 'aurelia-task-queue', 'aureli
if (this.count === 0) {
emLogger.warn('The same EventListener was disposed multiple times.');
} else if (--this.count === 0) {
DOM.removeEventListener(this.eventName, handleDelegatedEvent, false);
DOM.removeEventListener(this.eventName, handleCapturedEvent, true);
}
};

Expand Down
2 changes: 1 addition & 1 deletion doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<a name="2.3.1"></a>
## [2.3.1](https://github.com/aurelia/binding/compare/2.2.0...2.3.1) (2019-03-29)
## [2.3.1](https://github.com/aurelia/binding/compare/2.2.0...2.3.1) (2019-04-10)


### Bug Fixes
Expand Down

0 comments on commit 1886552

Please sign in to comment.