(element)
| 2393 | } |
| 2394 | |
| 2395 | function jqLiteDealoc(element){ |
| 2396 | jqLiteRemoveData(element); |
| 2397 | for ( var i = 0, children = element.childNodes || []; i < children.length; i++) { |
| 2398 | jqLiteDealoc(children[i]); |
| 2399 | } |
| 2400 | } |
| 2401 | |
| 2402 | function jqLiteOff(element, type, fn, unsupported) { |
| 2403 | if (isDefined(unsupported)) throw jqLiteMinErr('offargs', 'jqLite#off() does not support the `selector` argument'); |
no test coverage detected