* Hide the module. * @param {Module} module The module to hide. * @param {number} speed The speed of the hide animation. * @param {() => void} callback Called when the animation is done. * @param {object} [options] Optional settings for the hide method.
(module, speed, callback, options)
| 688 | * @param {object} [options] Optional settings for the hide method. |
| 689 | */ |
| 690 | hideModule (module, speed, callback, options) { |
| 691 | module.hidden = true; |
| 692 | _hideModule(module, speed, callback, options); |
| 693 | }, |
| 694 | |
| 695 | /** |
| 696 | * Show the module. |
nothing calls this directly
no test coverage detected