Plugin Directory

Changeset 738987


Ignore:
Timestamp:
07/11/2013 04:18:06 AM (13 years ago)
Author:
randyjensen
Message:

fixed tooltip suffix bug

Location:
rj-quickcharts/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • rj-quickcharts/trunk/README.txt

    r737237 r738987  
    77Requires at least: 3.0
    88Tested up to: 3.5.2
    9 Stable tag: 0.5.0
     9Stable tag: 0.5.1
    1010
    1111Create incredible HTML5/JavaScript charts right inside WordPress with a few clicks.
     
    3232== Frequently Asked Questions ==
    3333
     34= In the Works =
     35* Localization
     36* New Design
     37
    3438= Feature Requests? =
    3539
     
    4347
    4448== Changelog ==
     49
     50= 0.5.1 =
     51* Fixed bug where Tooltip Suffix was getting overwritten when multiple charts were on a single page
    4552
    4653= 0.5.0 =
  • rj-quickcharts/trunk/rj_charts.php

    r737222 r738987  
    44Plugin URI: http://www.randyjensen.com
    55Description: Easily create charts for your WordPress site. Line charts, bar charts and pie charts currently supported.
    6 Version: 0.5.0
     6Version: 0.5.1
    77Author: Randy Jensen
    88Author URI: http://www.randyjensen.com
     
    1515    global $table_name;
    1616
    17     $rjqc_db_version = '0.5.0';
     17    $rjqc_db_version = '0.5.1';
    1818    $table_name = $wpdb->prefix . 'rj_quickcharts';
    1919
  • rj-quickcharts/trunk/shortcode/init.php

    r737214 r738987  
    107107                $return_string .= "<script>";
    108108                $return_string .= "(function ($) {
    109 
    110109                    tooltipSuffix = '$tooltipSuffix';
    111110                    yAC = $yAxisCats;
     
    114113                        yAxisCats.push({label:yAC[i]});
    115114                    }
    116 
    117115                ";
    118116
     
    224222
    225223                                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');
    227225                                });
    228226                                ";
Note: See TracChangeset for help on using the changeset viewer.