(element)
| 2554 | } |
| 2555 | |
| 2556 | function jqLiteEmpty(element) { |
| 2557 | for (var i = 0, childNodes = element.childNodes; i < childNodes.length; i++) { |
| 2558 | jqLiteDealoc(childNodes[i]); |
| 2559 | } |
| 2560 | while (element.firstChild) { |
| 2561 | element.removeChild(element.firstChild); |
| 2562 | } |
| 2563 | } |
| 2564 | |
| 2565 | ////////////////////////////////////////// |
| 2566 | // Functions which are declared directly. |
nothing calls this directly
no test coverage detected