Code coverage report for lib/prototypes/dom_manipulation.js

Statements: 100% (6 / 6)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (6 / 6)      Ignored: none     

All files » lib/prototypes/ » dom_manipulation.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42    1                 1               1                               1   1   5    
'use strict';
 
var elements = require('../elements');
 
/**
 * Remove the element from the DOM
 *
 * @name Element#remove
 * @method
 *
 */
elements.addElementMethodWithoutArgumentsReturnThis('remove');
 
/**
 * Remove the elements from the DOM
 
 * @name ElementsArray#remove
 * @method
 */
elements.addElementsArrayMethodWithoutArgumentsReturnThis('remove');
 
/**
 * Remove the children's element
 *
 * @name Element#empty
 * @method
 *
 */
 
/**
 * Remove the children's elements
 
 * @name ElementsArray#empty
 * @method
 */
elements.addMethodWithoutArgumentsReturnThis('empty');
 
'text html appendText prependText replaceWith'.split(' ').forEach( /** @function 
                                                                   * @param mName */function (mName) {
  elements.addMethodWithArgumentsReturnThis(mName);
});
//# sourceMappingURL=dom_manipulation.js.map