(element, onlyDescendants)
| 3222 | } |
| 3223 | |
| 3224 | function jqLiteDealoc(element, onlyDescendants) { |
| 3225 | if (!onlyDescendants && jqLiteAcceptsData(element)) jqLite.cleanData([element]); |
| 3226 | |
| 3227 | if (element.querySelectorAll) { |
| 3228 | jqLite.cleanData(element.querySelectorAll('*')); |
| 3229 | } |
| 3230 | } |
| 3231 | |
| 3232 | function isEmptyObject(obj) { |
| 3233 | var name; |
no test coverage detected