Changeset 2801058
- Timestamp:
- 10/19/2022 07:58:06 AM (3 years ago)
- Location:
- bg-rutube-embed
- Files:
-
- 15 added
- 3 edited
-
tags/1.4.4 (added)
-
tags/1.4.4/bg-rutube.php (added)
-
tags/1.4.4/css (added)
-
tags/1.4.4/css/bg_rutube.css (added)
-
tags/1.4.4/css/blank.html (added)
-
tags/1.4.4/css/play.svg (added)
-
tags/1.4.4/inc (added)
-
tags/1.4.4/inc/options.php (added)
-
tags/1.4.4/js (added)
-
tags/1.4.4/js/bg_rutube.js (added)
-
tags/1.4.4/languages (added)
-
tags/1.4.4/languages/bg-rutube-embed-ru_RU.mo (added)
-
tags/1.4.4/languages/bg-rutube-embed-ru_RU.po (added)
-
tags/1.4.4/languages/bg-rutube-embed.pot (added)
-
tags/1.4.4/readme.txt (added)
-
trunk/bg-rutube.php (modified) (2 diffs)
-
trunk/js/bg_rutube.js (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bg-rutube-embed/trunk/bg-rutube.php
r2790474 r2801058 4 4 Plugin URI: http://bogaiskov.ru/plugin-bg-rutube-embed/ 5 5 Description: The plugin is the easiest way to embed RuTube videos in WordPress. 6 Version: 1.4. 36 Version: 1.4.4 7 7 Author: VBog 8 8 Author URI: http://bogaiskov.ru … … 39 39 die( 'Sorry, you are not allowed to access this page directly.' ); 40 40 } 41 define('BG_RUTUBE_VERSION', '1.4. 3');41 define('BG_RUTUBE_VERSION', '1.4.4'); 42 42 43 43 // Подключаем CSS и JS -
bg-rutube-embed/trunk/js/bg_rutube.js
r2790474 r2801058 22 22 // Следующий фильм 23 23 jQuery('#bg_rutube_next_movie'+uuid).click(function(){ 24 var movieID = jQuery('iframe#bg_rutube_player'+uuid).attr('src').replace(rutube_url,''); 24 // var movieID = jQuery('iframe#bg_rutube_player'+uuid).attr('src').replace(rutube_url,''); 25 var movieID = jQuery('div#bg_rutube_playlistContainer'+uuid).attr('data-movie'); 25 26 var el = bg_rutube_findMovie(movieID, uuid); 26 27 if (el === false) return false; … … 32 33 // Предыдущий фильм 33 34 jQuery('#bg_rutube_prev_movie'+uuid).click(function(){ 34 var movieID = jQuery('iframe#bg_rutube_player'+uuid).attr('src').replace(rutube_url,''); 35 // var movieID = jQuery('iframe#bg_rutube_player'+uuid).attr('src').replace(rutube_url,''); 36 var movieID = jQuery('div#bg_rutube_playlistContainer'+uuid).attr('data-movie'); 35 37 var el = bg_rutube_findMovie(movieID, uuid); 36 38 if (el === false) return false; … … 63 65 movieID = el.first().attr('data-movie'); 64 66 jQuery('iframe#bg_rutube_player'+uuid).attr('src',rutube_url+movieID); 67 jQuery('div#bg_rutube_playlistContainer'+uuid).attr('data-movie',movieID); 65 68 // Перемещаемся вверх к фрейму. Фрейм по центру экрана 66 69 var margin = (jQuery(window).height() - jQuery('iframe#bg_rutube_player'+uuid).height())/2; -
bg-rutube-embed/trunk/readme.txt
r2790476 r2801058 6 6 Requires PHP: 5.3 7 7 Requires at least: 3.0.1 8 Tested up to: 6.0. 29 Stable tag: 1.4. 38 Tested up to: 6.0.3 9 Stable tag: 1.4.4 10 10 License: GPLv2 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 45 45 46 46 == Changelog == 47 48 = 1.4.4 = 49 50 * Fixed: don't work Next and Previous buttons on the start. 47 51 48 52 = 1.4.2-3 =
Note: See TracChangeset
for help on using the changeset viewer.