Plugin Directory

Changeset 970078


Ignore:
Timestamp:
08/21/2014 08:45:56 PM (12 years ago)
Author:
randyjensen
Message:

Preparing for 1.0.2 release

Location:
wp-responsive-media/trunk
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-responsive-media/trunk/includes/class-wp-responsive-media.php

    r969980 r970078  
    9191        $this->dir = dirname( $this->file );
    9292        $this->assets_dir = trailingslashit( $this->dir ) . 'assets';
    93         $this->assets_url = esc_url( trailingslashit( plugins_url( '/assets/', $this->file ) ) );
     93        $this->assets_url = esc_url( trailingslashit( plugins_url( '/js/', $this->file ) ) );
    9494
    9595        register_activation_hook( $this->file, array( $this, 'install' ) );
     
    155155     */
    156156    public function enqueue_scripts () {
    157         wp_register_script( $this->_token . '-classList', esc_url( $this->assets_url ) . 'js/classList' . '.js', array(), $this->_version, true );
     157        wp_register_script( $this->_token . '-classList', esc_url( $this->assets_url ) . 'classList' . '.js', array(), $this->_version, true );
    158158        wp_enqueue_script( $this->_token . '-classList' );
    159159
    160         wp_register_script( $this->_token . '-picturefill.min', esc_url( $this->assets_url ) . 'js/picturefill.min' . '.js', array(), $this->_version, true );
     160        wp_register_script( $this->_token . '-picturefill.min', esc_url( $this->assets_url ) . 'picturefill.min' . '.js', array(), $this->_version, true );
    161161        wp_enqueue_script( $this->_token . '-picturefill.min' );
    162162
    163         wp_register_script( $this->_token . '-frontend', esc_url( $this->assets_url ) . 'js/frontend' . '.js', array(), $this->_version, true );
     163        wp_register_script( $this->_token . '-frontend', esc_url( $this->assets_url ) . 'frontend' . '.js', array(), $this->_version, true );
    164164        wp_enqueue_script( $this->_token . '-frontend' );
    165165    } // End enqueue_scripts ()
  • wp-responsive-media/trunk/readme.txt

    r970046 r970078  
    55Requires at least: 3.9
    66Tested up to: 3.9.1
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • wp-responsive-media/trunk/wp-responsive-media.php

    r970046 r970078  
    22/*
    33 * Plugin Name: WP Responsive Media
    4  * Version: 1.0.1
     4 * Version: 1.0.2
    55 * Plugin URI: http://www.randyjensen.com/
    66 * Description: Seamless responsive media for WordPress
     
    3030 */
    3131function WP_Responsive_Media () {
    32     $instance = WP_Responsive_Media::instance( __FILE__, '1.0.1' );
     32    $instance = WP_Responsive_Media::instance( __FILE__, '1.0.2' );
    3333
    3434    return $instance;
Note: See TracChangeset for help on using the changeset viewer.