This commit is contained in:
Ray Elliott 2020-04-29 14:55:37 +01:00
parent e4d82ef50e
commit d0192ef83b
1 changed files with 4 additions and 0 deletions

View File

@ -112,3 +112,7 @@ endsnippet
snippet th "this.handle..." snippet th "this.handle..."
this.handle${1:Click} = this.handle$1.bind(this); this.handle${1:Click} = this.handle$1.bind(this);
endsnippet endsnippet
snippet tb "this ... = ... .bind(this);"
this.$1 = this.$1.bind(this);
endsnippet