Code coverage report for lib/prototypes/visibility.js

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

All files » lib/prototypes/ » visibility.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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68    1                               1                               1                               1                               1  
'use strict';
 
var elements = require('../elements');
 
/**
 * Show the element (remove the class .hidden)
 *
 * @name Element#show
 * @method
 *
 */
 
/**
 * Show the elements (remove the class .hidden)
 *
 * @name ElementsArray#show
 * @method
 */
elements.addMethodWithoutArgumentsReturnThis('show');
 
/**
 * Hide the element (add the class .hidden)
 *
 * @name Element#hide
 * @method
 *
 */
 
/**
 * Hide the elements (add the class .hidden)
 *
 * @name ElementsArray#hide
 * @method
 */
elements.addMethodWithoutArgumentsReturnThis('hide');
 
/**
 * Toggle an element's visibility using the hidden class
 *
 * @name Element#toggle
 * @method
 *
 */
 
/**
 * Toggle an element's visibility using the hidden class
 *
 * @name ElementsArray#toggle
 * @method
 */
elements.addMethodWithoutArgumentsReturnThis('toggle');
 
/**
 * Return if an element's visibility
 *
 * @name Element#isVisible
 * @method
 *
 */
 
/**
 * Return a map of element's visibility
 *
 * @name ElementsArray#isVisible
 * @method
 */
elements.addMethodWithoutArgumentsReturnResult('isVisible');
//# sourceMappingURL=visibility.js.map