diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2873,7 +2873,7 @@ var click = function() { rect.on('click', click) ``` -**Note:** The context of `this` in the callback is binded to the element. You can change this context by applying your own object: +**Note:** The context of `this` in the callback is bound to the element. You can change this context by applying your own object: ```javascript rect.on('click', click, window) // context of this is window |