We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa3452f commit 1620621Copy full SHA for 1620621
src/directives/on.js
@@ -9,7 +9,7 @@ module.exports = {
9
// so they can't be delegated
10
this.bubbles = this.arg !== 'blur' && this.arg !== 'focus'
11
if (this.bubbles) {
12
- this.compiler.addListener(this)
+ this.binding.compiler.addListener(this)
13
}
14
},
15
@@ -37,7 +37,7 @@ module.exports = {
37
38
unbind: function () {
39
40
- this.compiler.removeListener(this)
+ this.binding.compiler.removeListener(this)
41
} else {
42
this.reset()
43
0 commit comments