Changeset 216165
- Timestamp:
- 03/11/2010 11:16:38 AM (16 years ago)
- Location:
- easy-chart-builder/trunk
- Files:
-
- 2 edited
-
easy-chart-builder.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-chart-builder/trunk/easy-chart-builder.php
r216041 r216165 2 2 /* 3 3 Plugin Name: Easy Chart Builder 4 Version: 0.9. 24 Version: 0.9.3 5 5 Plugin URI: http://www.dyerware.com/main/easy-chart-builder 6 6 Description: Creates a chart directly in your post or page via shortcut. Manages sizing of chart to support wptouch and other mobile themes. … … 86 86 function add_admin_files() 87 87 { 88 $ jsDir = plugins_url ( plugin_basename ( dirname ( __FILE__ ) ) ) . '/js/';88 $plgDir = plugins_url ( plugin_basename ( dirname ( __FILE__ ) ) ); 89 89 90 90 if ( isset( $_GET['page'] ) && $_GET['page'] == 'easy-chart-builder/easy-chart-builder.php' ) 91 91 { 92 echo "<link rel='stylesheet' media='screen' type='text/css' href='" . compat_get_plugin_url( "easy-chart-builder"). "/colorpicker/code/colorpicker.css' />\n";93 echo "<script type='text/javascript' src='" . compat_get_plugin_url( "easy-chart-builder"). "/colorpicker/code/colorpicker.js'></script>\n";92 echo "<link rel='stylesheet' media='screen' type='text/css' href='" . $plgDir . "/colorpicker/code/colorpicker.css' />\n"; 93 echo "<script type='text/javascript' src='" . $plgDir . "/colorpicker/code/colorpicker.js'></script>\n"; 94 94 95 95 … … 235 235 if ($this->installScripts == false) 236 236 { 237 $plgDir = plugins_url ( plugin_basename ( dirname ( __FILE__ ) ) ); 237 238 $this->installScripts = true; 238 $header = "<script type='text/javascript' src='" . compat_get_plugin_url( "easy-chart-builder"). "/js/easy-chart-builder.js'></script>\n";239 $header = "<script type='text/javascript' src='" . $plgDir . "/js/easy-chart-builder.js'></script>\n"; 239 240 } 240 241 -
easy-chart-builder/trunk/readme.txt
r216041 r216165 6 6 Requires at least: 2.8 7 7 Tested up to: 2.9.2 8 Stable tag: 0.9. 28 Stable tag: 0.9.3 9 9 10 10 This plugin allows you to easily create charts within your blog by use of shortcodes. … … 71 71 == Upgrade Notice == 72 72 73 = 0.9.3 = 74 Compatibility issue with plugin dir. 75 73 76 = 0.9.2 = 74 77 Admin panel color fields are now visual and feature color pickers. widget fix. … … 103 106 104 107 == Changelog == 108 109 = 0.9.3 = 110 * Compatibility issue with plugin dir. 105 111 106 112 = 0.9.2 =
Note: See TracChangeset
for help on using the changeset viewer.