Plugin Directory

Changeset 592567


Ignore:
Timestamp:
08/30/2012 06:48:27 PM (14 years ago)
Author:
ivycat
Message:

Added banner, plugin housekeeping: readme.txt, plugin header

Location:
wp-jquery-pdf-paged/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-jquery-pdf-paged/trunk/readme.txt

    r588544 r592567  
    4848== Changelog ==
    4949
     50= 1.02 =
     51* Fixed bug causing pages not to load.
     52
    5053= 1.01 =
    5154* Updated readme.txt, plugin header.
    5255
    5356== Upgrade Notice ==
     57
     58= 1.02 =
     59
     60If version 1.01 isn't working for you, upgrade to 1.02.
    5461
    5562= 1.01 =
  • wp-jquery-pdf-paged/trunk/wp-jquery-paged.php

    r588544 r592567  
    66*   Author: IvyCat Web Services
    77*   Author URI: http://www.ivycat.com
    8 *   Version: 1.01
     8*   Version: 1.02
    99*   License: GPLv3
    1010**/
     
    1313    public function __construct(){
    1414        add_shortcode( 'wp-jquery-paged', array( &$this, 'display' ) );
    15         wp_enqueue_script( 'jq-easing', plugins_url().'/wp-jquery-paged/assets/jquery.easing.1.3.js', array( 'jquery' ) );
    16         wp_enqueue_script( 'jq-booklet', plugins_url().'/wp-jquery-paged/assets/jquery.booklet.1.1.0.min.js', array( 'jquery' ) );
    17         wp_enqueue_style( 'jq-booklet-styles', plugins_url().'/wp-jquery-paged/assets/booklet_styles.css' );
     15        wp_enqueue_script( 'jq-easing', plugins_url('assets/jquery.easing.1.3.js', __FILE__), array( 'jquery' ) );
     16        wp_enqueue_script( 'jq-booklet', plugins_url('assets/jquery.booklet.1.1.0.min.js', __FILE__), array( 'jquery' ) );
     17        wp_enqueue_style( 'jq-booklet-styles', plugins_url('assets/booklet_styles.css', __FILE__) );
    1818    }
    1919   
Note: See TracChangeset for help on using the changeset viewer.