* Binds events handles
()
| 32 | * Binds events handles |
| 33 | */ |
| 34 | bind() { |
| 35 | for(var key in this.events) { |
| 36 | var prop = this.events[key]; |
| 37 | this.element.bind(key, this[prop]); |
| 38 | } |
| 39 | } |
| 40 | /** |
| 41 | * Unbinds events handles |
| 42 | */ |
no outgoing calls
no test coverage detected