Plugin Directory

Changeset 719943


Ignore:
Timestamp:
05/29/2013 04:27:00 PM (13 years ago)
Author:
skustes
Message:

Tagging version 1.3

Location:
multi-video-box/tags/1.3
Files:
1 edited
14 copied

Legend:

Unmodified
Added
Removed
  • multi-video-box/tags/1.3/js/mvob_scripts.js

    r717783 r719943  
     1function 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
    112// These functions move Select list items up and down the list
    213// 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  
    44Plugin URI: http://www.nuttymango.com/multi-video-box/
    55Description: "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.2
     6Version: 1.3
    77Author: Scott Kustes
    88Author URI: http://www.nuttymango.com/
     
    2525// Constants for MVOB definition
    2626if ( !defined( 'MVOB_DB_VERS' ) )
    27     define( 'MVOB_DB_VERS' , '1.2' );
     27    define( 'MVOB_DB_VERS' , '1.3' );
    2828if ( !defined( 'MVOB_PLUGIN_URL' ) )
    2929    define( 'MVOB_PLUGIN_URL' , plugin_dir_url( __FILE__ ) );
     
    198198        }*/
    199199
    200         if ( ( $screen->id == $mvob_groups ) ) {
     200        if ( ( $screen->id == $mvob_videos ) || ( $screen->id == $mvob_groups ) ) {
    201201            // Admin scripts
    202202            wp_register_script( 'mvob-scripts', MVOB_PLUGIN_URL . 'js/mvob_scripts.js' , __FILE__ ); 
  • multi-video-box/tags/1.3/readme.txt

    r719920 r719943  
    55Requires at least: 3.3
    66Tested up to: 3.5.1
    7 Stable tag: 1.2
     7Stable tag: 1.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3535
    3636== Changelog ==
     37
     38= 1.3 =
     39* Added missing function
    3740
    3841= 1.2 =
Note: See TracChangeset for help on using the changeset viewer.