Changeset 738987
- Timestamp:
- 07/11/2013 04:18:06 AM (13 years ago)
- Location:
- rj-quickcharts/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (3 diffs)
-
rj_charts.php (modified) (2 diffs)
-
shortcode/init.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rj-quickcharts/trunk/README.txt
r737237 r738987 7 7 Requires at least: 3.0 8 8 Tested up to: 3.5.2 9 Stable tag: 0.5. 09 Stable tag: 0.5.1 10 10 11 11 Create incredible HTML5/JavaScript charts right inside WordPress with a few clicks. … … 32 32 == Frequently Asked Questions == 33 33 34 = In the Works = 35 * Localization 36 * New Design 37 34 38 = Feature Requests? = 35 39 … … 43 47 44 48 == Changelog == 49 50 = 0.5.1 = 51 * Fixed bug where Tooltip Suffix was getting overwritten when multiple charts were on a single page 45 52 46 53 = 0.5.0 = -
rj-quickcharts/trunk/rj_charts.php
r737222 r738987 4 4 Plugin URI: http://www.randyjensen.com 5 5 Description: Easily create charts for your WordPress site. Line charts, bar charts and pie charts currently supported. 6 Version: 0.5. 06 Version: 0.5.1 7 7 Author: Randy Jensen 8 8 Author URI: http://www.randyjensen.com … … 15 15 global $table_name; 16 16 17 $rjqc_db_version = '0.5. 0';17 $rjqc_db_version = '0.5.1'; 18 18 $table_name = $wpdb->prefix . 'rj_quickcharts'; 19 19 -
rj-quickcharts/trunk/shortcode/init.php
r737214 r738987 107 107 $return_string .= "<script>"; 108 108 $return_string .= "(function ($) { 109 110 109 tooltipSuffix = '$tooltipSuffix'; 111 110 yAC = $yAxisCats; … … 114 113 yAxisCats.push({label:yAC[i]}); 115 114 } 116 117 115 "; 118 116 … … 224 222 225 223 jQuery('#rjqc_container_$id').bind('jqplotDataMouseOver', function (ev, seriesIndex, pointIndex, data) { 226 jQuery('.jqplot-highlighter-tooltip').html('' + data[1] + tooltipSuffix);224 jQuery('.jqplot-highlighter-tooltip').html('' + data[1] + '$tooltipSuffix'); 227 225 }); 228 226 ";
Note: See TracChangeset
for help on using the changeset viewer.