This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* jackfuchs.Sound.js | |
* Can play and stop single and multi frequency tones | |
* Can play, pause, resume and stop sound files | |
* | |
* @author: Axel Jack Fuchs (Cologne, Germany) | |
* @date: 01-12-2017 12:55 | |
* @url https://gist.github.com/jackfuchs/ | |
* | |
* Usage: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* jQuery.alterClass | |
* | |
* For altering classes | |
* | |
* @param removals (wildcards are possible) | |
* [@param] additions | |
* @return jQuery object | |
* | |
* @author Axel Jack Fuchs (Cologne, Germany) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* jQuery.support.cssProperty | |
* To verify that a CSS property is supported | |
* (or any of its browser-specific implementations) | |
* | |
* @param p css property name | |
* @param rp optional, if set to true, the css property name will be returned | |
* instead of a boolean support indicator | |
* @return {mixed} | |
* |