Changeset 1845513
- Timestamp:
- 03/23/2018 09:12:39 AM (8 years ago)
- Location:
- wp-slide-sync-lite/trunk
- Files:
-
- 4 edited
-
assets/admin.js (modified) (3 diffs)
-
assets/main.js (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wp-slide-sync-lite.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-slide-sync-lite/trunk/assets/admin.js
r1843385 r1845513 339 339 function addKeyframe(xcoord) { 340 340 341 if( keyframes.length >= 5) {342 alert('The Lite version of WP Slide Sync only supports marking up to 5keyframes. Upgrade to the Pro version to set unlimited keyframes.');341 if( keyframes.length >= 8 ) { 342 alert('The Lite version of WP Slide Sync only supports marking up to 8 keyframes. Upgrade to the Pro version to set unlimited keyframes.'); 343 343 return false; 344 344 } … … 631 631 if( video.provider == 'youtube' ) { 632 632 633 window.onYouTubeIframeAPIReady = function() { 634 635 loadPlayer(container, video.id); 636 637 } 633 loadPlayer(container, video.id); 638 634 639 635 } else if( video.provider == 'vimeo' ) { … … 667 663 if( vtype == 'youtube' ) { 668 664 669 window.onYouTubeIframeAPIReady = function() { 670 665 if (typeof(YT) == 'undefined' || typeof(YT.Player) == 'undefined') { 666 667 window.onYouTubeIframeAPIReady = function() { 668 loadPlayer(container, vid); 669 }; 670 671 } else { 671 672 loadPlayer(container, vid); 672 673 673 } 674 674 -
wp-slide-sync-lite/trunk/assets/main.js
r1843608 r1845513 46 46 } 47 47 48 if(typeof(YT) == 'undefined' || typeof(YT.Player) == 'undefined'){ 49 window.onYouTubeIframeAPIReady = function() { 50 loadPlayer(); 51 }; 52 } else { 48 window.onYouTubeIframeAPIReady = function() { 49 53 50 loadPlayer(); 54 } 51 52 }; 55 53 56 54 // Set player timecode -
wp-slide-sync-lite/trunk/readme.txt
r1843411 r1845513 1 1 === WP Slide Sync === 2 Contributors: Reattendance Ltd2 Contributors: WP Slide Sync 3 3 Donate link: https://www.slidesync.com 4 4 License: GPLv3 -
wp-slide-sync-lite/trunk/wp-slide-sync-lite.php
r1843393 r1845513 4 4 Plugin Name: WP Slide Sync Lite 5 5 Description: Plugin for creating and displaying dynamic presentations by syncing a slideshow to video playback 6 Plugin URI: Author URI: http://www.wpslidesync.com/ 7 Version: 1.0 8 Author: Reattendance 9 Author URI: http://www.wpslidesync.com/ 10 Text Domain: wp-slide-sync 6 Plugin URI: https://www.wpslidesync.com 7 Version: 1.1 8 Author: WP Slide Sync 9 Author URI: http://www.wpslidesync.com 10 Text Domain: http://www.wpslidesync.com 11 11 12 */ 12 13 13 14 /** 14 * @copyright Copyright (c) 201 8. All rights reserved.15 * @copyright Copyright (c) 2016. All rights reserved. 15 16 * 16 17 * @license Released under the GPL license http://www.opensource.org/licenses/gpl-license.php … … 30 31 */ 31 32 32 define( 'WP_SLIDE_SYNC_VERSION', '1. 0' );33 define( 'WP_SLIDE_SYNC_VERSION', '1.1' ); 33 34 34 35 // deny direct access
Note: See TracChangeset
for help on using the changeset viewer.