'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 |