Changeset 719943
- Timestamp:
- 05/29/2013 04:27:00 PM (13 years ago)
- Location:
- multi-video-box/tags/1.3
- Files:
-
- 1 edited
- 14 copied
-
. (copied) (copied from multi-video-box/trunk)
-
classes/class.group_form.php (copied) (copied from multi-video-box/trunk/classes/class.group_form.php)
-
classes/class.video_embed.php (copied) (copied from multi-video-box/trunk/classes/class.video_embed.php)
-
classes/class.video_form.php (copied) (copied from multi-video-box/trunk/classes/class.video_form.php)
-
css/mvob_style_compressed.css (copied) (copied from multi-video-box/trunk/css/mvob_style_compressed.css)
-
images/left-arrow.png (copied) (copied from multi-video-box/trunk/images/left-arrow.png)
-
images/right-arrow.png (copied) (copied from multi-video-box/trunk/images/right-arrow.png)
-
js/mvob_scripts.js (modified) (1 diff)
-
models/database.php (copied) (copied from multi-video-box/trunk/models/database.php)
-
multi-video-box.php (copied) (copied from multi-video-box/trunk/multi-video-box.php) (3 diffs)
-
readme.txt (copied) (copied from multi-video-box/trunk/readme.txt) (2 diffs)
-
views/common/instructions.php (copied) (copied from multi-video-box/trunk/views/common/instructions.php)
-
views/group/add_videos_to_group.php (copied) (copied from multi-video-box/trunk/views/group/add_videos_to_group.php)
-
views/video/add_video.php (copied) (copied from multi-video-box/trunk/views/video/add_video.php)
-
views/video/add_video_to_groups.php (copied) (copied from multi-video-box/trunk/views/video/add_video_to_groups.php)
Legend:
- Unmodified
- Added
- Removed
-
multi-video-box/tags/1.3/js/mvob_scripts.js
r717783 r719943 1 function show_hide_instruction_div ( div_name , show_or_hide ) { 2 the_div = document.getElementById( div_name ); 3 4 if ( show_or_hide == "show" ) { 5 the_div.style.display = "inline"; 6 } 7 else { 8 the_div.style.display = "none"; 9 } 10 } 11 1 12 // These functions move Select list items up and down the list 2 13 // Adapted from http://blog.pothoven.net/2006/10/move-options-up-and-down-select-lists.html -
multi-video-box/tags/1.3/multi-video-box.php
r719920 r719943 4 4 Plugin URI: http://www.nuttymango.com/multi-video-box/ 5 5 Description: "Multi Video Box" gives you the capability to output numerous videos on a single page, but only take up the space of a single video. Uses tabbed navigation to switch videos. 6 Version: 1. 26 Version: 1.3 7 7 Author: Scott Kustes 8 8 Author URI: http://www.nuttymango.com/ … … 25 25 // Constants for MVOB definition 26 26 if ( !defined( 'MVOB_DB_VERS' ) ) 27 define( 'MVOB_DB_VERS' , '1. 2' );27 define( 'MVOB_DB_VERS' , '1.3' ); 28 28 if ( !defined( 'MVOB_PLUGIN_URL' ) ) 29 29 define( 'MVOB_PLUGIN_URL' , plugin_dir_url( __FILE__ ) ); … … 198 198 }*/ 199 199 200 if ( ( $screen->id == $mvob_ groups ) ) {200 if ( ( $screen->id == $mvob_videos ) || ( $screen->id == $mvob_groups ) ) { 201 201 // Admin scripts 202 202 wp_register_script( 'mvob-scripts', MVOB_PLUGIN_URL . 'js/mvob_scripts.js' , __FILE__ ); -
multi-video-box/tags/1.3/readme.txt
r719920 r719943 5 5 Requires at least: 3.3 6 6 Tested up to: 3.5.1 7 Stable tag: 1. 27 Stable tag: 1.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 35 35 36 36 == Changelog == 37 38 = 1.3 = 39 * Added missing function 37 40 38 41 = 1.2 =
Note: See TracChangeset
for help on using the changeset viewer.