(element, onlyDescendants)
| 2874 | } |
| 2875 | |
| 2876 | function jqLiteDealoc(element, onlyDescendants) { |
| 2877 | if (!onlyDescendants) jqLiteRemoveData(element); |
| 2878 | |
| 2879 | if (element.querySelectorAll) { |
| 2880 | var descendants = element.querySelectorAll('*'); |
| 2881 | for (var i = 0, l = descendants.length; i < l; i++) { |
| 2882 | jqLiteRemoveData(descendants[i]); |
| 2883 | } |
| 2884 | } |
| 2885 | } |
| 2886 | |
| 2887 | function jqLiteOff(element, type, fn, unsupported) { |
| 2888 | if (isDefined(unsupported)) throw jqLiteMinErr('offargs', 'jqLite#off() does not support the `selector` argument'); |
no test coverage detected