Plugin Directory

Changeset 997497


Ignore:
Timestamp:
09/27/2014 07:01:52 AM (11 years ago)
Author:
jamie3d
Message:

Adds an editor stylesheet for TinyMCE

Location:
fluid-video-embeds/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • fluid-video-embeds/trunk/fluid-video-embeds.php

    r901424 r997497  
    55Description: Makes your YouTube and Vimeo auto-embeds fluid/full width.
    66Author: jamie3d
    7 Version: 1.2.4
     7Version: 1.2.5
    88Author URI: http://jamie3d.com
    99*/
     
    109109        add_action( 'init', array( &$this, 'wp_register_styles' ), 1 );
    110110
     111        // Add the default stylesheet to the editor
     112        add_action( 'after_setup_theme', array( &$this, 'add_editor_styles' ) );
     113
    111114        // Add the fve shortcode
    112115        add_shortcode( 'fve', array( &$this, 'shortcode' ) );
     116    }
     117
     118    /**
     119     * Adds the default FVE stylesheet to the
     120     * WYSIWYG editor so the shortcode executes correctly.
     121     */
     122    function add_editor_styles() {
     123        add_editor_style( FLUID_VIDEO_EMBEDS_URLPATH . "/stylesheets/main.css" );
    113124    }
    114125
  • fluid-video-embeds/trunk/lib/constants.php

    r901424 r997497  
    77
    88// The current version of this plugin
    9 if( !defined( 'FLUID_VIDEO_EMBEDS_VERSION' ) ) define( 'FLUID_VIDEO_EMBEDS_VERSION', '1.2.4' );
     9if( !defined( 'FLUID_VIDEO_EMBEDS_VERSION' ) ) define( 'FLUID_VIDEO_EMBEDS_VERSION', '1.2.5' );
    1010
    1111// The cache prefix
  • fluid-video-embeds/trunk/readme.txt

    r901425 r997497  
    44Tags: video, youtube, vimeo, fluid, flexible, elastic, responsive, 100%, full width, embed, oEmbed
    55Requires at least: 3.3
    6 Tested up to: 3.9
     6Tested up to: 4.0
    77Stable tag: trunk
    88License: GPLv3
     
    6363
    6464== Changelog ==
     65= 1.2.5 =
     66* Adds an editor stylesheet for TinyMCE
     67
    6568= 1.2.4 =
    6669* Fixes a few PHP notices due to empty API results.
     
    104107
    105108== Upgrade Notice ==
     109= 1.2.5 =
     110* Adds an editor stylesheet for TinyMCE
     111
    106112= 1.2.4 =
    107113* Adds a new YouTube option that allows you to force the 16:9 ratio.
Note: See TracChangeset for help on using the changeset viewer.