Changeset 592567
- Timestamp:
- 08/30/2012 06:48:27 PM (14 years ago)
- Location:
- wp-jquery-pdf-paged/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (1 diff)
-
wp-jquery-paged.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-jquery-pdf-paged/trunk/readme.txt
r588544 r592567 48 48 == Changelog == 49 49 50 = 1.02 = 51 * Fixed bug causing pages not to load. 52 50 53 = 1.01 = 51 54 * Updated readme.txt, plugin header. 52 55 53 56 == Upgrade Notice == 57 58 = 1.02 = 59 60 If version 1.01 isn't working for you, upgrade to 1.02. 54 61 55 62 = 1.01 = -
wp-jquery-pdf-paged/trunk/wp-jquery-paged.php
r588544 r592567 6 6 * Author: IvyCat Web Services 7 7 * Author URI: http://www.ivycat.com 8 * Version: 1.0 18 * Version: 1.02 9 9 * License: GPLv3 10 10 **/ … … 13 13 public function __construct(){ 14 14 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__) ); 18 18 } 19 19
Note: See TracChangeset
for help on using the changeset viewer.