Changeset 2143022
- Timestamp:
- 08/21/2019 09:30:27 AM (7 years ago)
- Location:
- elvantools/trunk
- Files:
-
- 3 edited
-
elvantotools.js (modified) (1 diff)
-
elvantotools.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
elvantools/trunk/elvantotools.js
r1829625 r2143022 7 7 }); 8 8 $('.elvantotools_go_fullscreen').on('click', function() { 9 if ($(this).hasClass('elvantotools_fullscreen_on')) {10 $(this).removeClass('elvantotools_fullscreen_on');11 $('.elvantotools_roster,.elvantotools_songs').removeClass('elvantotools_fullscreen');12 } else {13 $(this).addClass('elvantotools_fullscreen_on');14 $('.elvantotools_roster,.elvantotools_songs').addClass('elvantotools_fullscreen');15 }9 if ($(this).hasClass('elvantotools_fullscreen_on')) { 10 $(this).removeClass('elvantotools_fullscreen_on'); 11 $('.elvantotools_roster,.elvantotools_songs').removeClass('elvantotools_fullscreen'); 12 } else { 13 $(this).addClass('elvantotools_fullscreen_on'); 14 $('.elvantotools_roster,.elvantotools_songs').addClass('elvantotools_fullscreen'); 15 } 16 16 }); 17 17 $('.elvantotools_play').on('click', function() { 18 if (this.mp3) {19 if (this.mp3.paused) {20 this.mp3.play();21 } else {22 this.mp3.pause();23 }24 } else {25 this.mp3 = new Audio($(this).attr('href'));26 this.mp3.play();27 }28 return false;18 if (this.mp3) { 19 if (this.mp3.paused) { 20 this.mp3.play(); 21 } else { 22 this.mp3.pause(); 23 } 24 } else { 25 this.mp3 = new Audio($(this).attr('href')); 26 this.mp3.play(); 27 } 28 return false; 29 29 }); 30 30 $('.elvantotools_map_search input, .elvantotools_map_search select').on('change', function () { 31 32 } 31 32 }); 33 33 })( jQuery ); -
elvantools/trunk/elvantotools.php
r2092189 r2143022 3 3 * @package ElvantoTools 4 4 * @author JagTech 5 * @version 2. 25 * @version 2.3 6 6 */ 7 7 /* … … 10 10 Description: Display rosters and song lists from Elvanto 11 11 Author: JagTech 12 Version: 2. 212 Version: 2.3 13 13 Author URI: http://jagtech.biz 14 14 */ -
elvantools/trunk/readme.txt
r2092189 r2143022 3 3 Tags: plugin,widget,elvanto,church,roster,songs 4 4 Requires at least: 4.2.2 5 Tested up to: 5. 0.46 Stable tag: 2. 25 Tested up to: 5.2.2 6 Stable tag: 2.3 7 7 8 8 ElvantoTools is a plugin that allows the display of Elvanto information … … 80 80 v2.2 81 81 Fixed link to mp3 preview of song 82 v2.3 83 Fixed a bug in the javascript functions file
Note: See TracChangeset
for help on using the changeset viewer.