UNPKG

boilerplate.js

Version:

Development Tools

7 lines (5 loc) 187 B
Element.prototype.slideToggle = function(cb, speed = 200) { this.classList.contains('hidden') ? this.slideDown(cb, speed) : this.slideUp(cb, speed); };