Plugin Directory

Changeset 592665


Ignore:
Timestamp:
08/30/2012 09:31:59 PM (14 years ago)
Author:
ivycat
Message:

Plugin housekeeping: filenames, corrected shortcode in doc (readme.txt)

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

Legend:

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

    r592567 r592665  
    3232
    33331. Upload your images to the page or post.  Give them an order (IMPORTANT) 1-x
    34 1. Use the following shortcode: `[wp_jquery_paged]`
     341. Use the following shortcode: `[wp-jquery-paged]`
    35351. That's it!
    3636
     
    4747
    4848== Changelog ==
     49
     50= 1.03 =
     51
     52* In `output-view.php' changed message seen if JavaScript is turned off.
     53* Corrected filename conventions
    4954
    5055= 1.02 =
  • wp-jquery-pdf-paged/trunk/wp-jquery-paged.php

    r592567 r592665  
    66*   Author: IvyCat Web Services
    77*   Author URI: http://www.ivycat.com
    8 *   Version: 1.02
     8*   Version: 1.03
    99*   License: GPLv3
    1010**/
     
    1515        wp_enqueue_script( 'jq-easing', plugins_url('assets/jquery.easing.1.3.js', __FILE__), array( 'jquery' ) );
    1616        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__) );
     17        wp_enqueue_style( 'jq-booklet-styles', plugins_url('assets/booklet-styles.css', __FILE__) );
    1818    }
    1919   
     
    2323        //fprint_r( $imgs );
    2424         ob_start();
    25          require_once 'assets/views/output_view.php';
     25         require_once 'assets/views/output-view.php';
    2626         $output .= ob_get_contents();
    2727         ob_end_clean();
Note: See TracChangeset for help on using the changeset viewer.