* Remove event listener shorthand. * * @param {Element} el * @param {String} event * @param {Function} cb
(el, event, cb)
| 1281 | */ |
| 1282 | |
| 1283 | function off(el, event, cb) { |
| 1284 | el.removeEventListener(event, cb); |
| 1285 | } |
| 1286 | |
| 1287 | /** |
| 1288 | * For IE9 compat: when both class and :class are present |