Changeset 210780
- Timestamp:
- 02/27/2010 03:55:12 AM (16 years ago)
- Location:
- easy-chart-builder/trunk
- Files:
-
- 3 edited
-
easy-chart-builder.php (modified) (2 diffs)
-
js/easy-chart-builder.js (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-chart-builder/trunk/easy-chart-builder.php
r208089 r210780 2 2 /* 3 3 Plugin Name: Easy Chart Builder 4 Version: 0.8. 14 Version: 0.8.2 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. … … 33 33 { 34 34 $jsDir = get_option('siteurl') . '/wp-content/plugins/easy-chart-builder/js/'; 35 wp_register_script('wpEasyCharts', "{$jsDir}easy-chart-builder.js", false, '0.10. 1');35 wp_register_script('wpEasyCharts', "{$jsDir}easy-chart-builder.js", false, '0.10.2'); 36 36 } 37 37 -
easy-chart-builder/trunk/js/easy-chart-builder.js
r208089 r210780 1 1 /** 2 2 * Handle: easyChartBuilder 3 * Version: 0.10. 13 * Version: 0.10.2 4 4 * Enqueue: true 5 5 * … … 99 99 100 100 tempString = chartHandle["valuenames"]; 101 var chartValueNames = "|" + this.constructList(tempString, ",", "|",0, true); 101 var order = false; 102 if (chartType == "horizbar" || chartType == "horizbarstack") {order = true;} 103 var chartValueNames = "|" + this.constructList(tempString, ",", "|",0, order); 102 104 103 105 var groupName; -
easy-chart-builder/trunk/readme.txt
r208089 r210780 6 6 Requires at least: 2.8 7 7 Tested up to: 2.9.2 8 Stable tag: 0.8. 18 Stable tag: 0.8.2 9 9 10 10 This plugin allows you to easily create charts within your blog by use of shortcodes. … … 68 68 == Upgrade Notice == 69 69 70 = 0.8.2 = 71 Fixed wrong label order for horizontal chart types 72 70 73 = 0.8.1 = 71 74 Fixed stacked charts problem with value axis … … 88 91 89 92 == Changelog == 93 94 = 0.8.2 = 95 * Fixed wrong label order for horizontal chart types 90 96 91 97 = 0.8.1 =
Note: See TracChangeset
for help on using the changeset viewer.