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
| // Line #624, I needed to "reset the audioPlayers array | |
| function profileAudioPlayers(){ | |
| audioPlayers = [] | |
| $('.provider-audio').each ... | |
| } | |
| // Line #236 | |
| Changed from: | |
| $('.provider-audio__play').on('click touchstart', function(){ | |
| To: |
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
| isMobile = () -> | |
| if navigator.userAgent.match(/Android/i) || | |
| navigator.userAgent.match(/webOS/i) || | |
| navigator.userAgent.match(/iPhone/i) || | |
| navigator.userAgent.match(/iPad/i) || | |
| navigator.userAgent.match(/BlackBerry/i) || | |
| navigator.userAgent.match(/Windows Phone/i) | |
| true | |
| else | |
| false |
OlderNewer