Plugin Directory

Changeset 745302


Ignore:
Timestamp:
07/24/2013 12:20:46 AM (13 years ago)
Author:
randyjensen
Message:

fixed legend and tooltip encapsulation

Location:
rj-quickcharts/trunk
Files:
3 edited

Legend:

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

    r743298 r745302  
    77Requires at least: 3.0
    88Tested up to: 3.5.2
    9 Stable tag: 0.5.4
     9Stable tag: 0.5.5
    1010
    1111Build Complex, Powerful HTML5 Bar Charts, Line Charts and Pie Charts in Just Minutes. No Programming Knowledge Required!
     
    2020
    21211. Selecting a chart type (Line Chart, Bar Chart or Pie Chart)
    22 2. Choosing a few options 
     222. Choosing a few options
    23233. Add your data!
    2424
     
    7575== Changelog ==
    7676
     77= 0.5.5 =
     78* Bug fix in the way the legends and tooltips are handled
     79
    7780= 0.5.4 =
    7881* Updated readme with feature list
  • rj-quickcharts/trunk/rj_charts.php

    r743298 r745302  
    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.4
     6Version: 0.5.5
    77Author: Randy Jensen
    88Author URI: http://www.randyjensen.com
     
    1515    global $table_name;
    1616
    17     $rjqc_db_version = '0.5.4';
     17    $rjqc_db_version = '0.5.5';
    1818    $table_name = $wpdb->prefix . 'rj_quickcharts';
    1919
  • rj-quickcharts/trunk/shortcode/init.php

    r741285 r745302  
    216216                                // Handle legend hiding on the client
    217217                                if($legend === false) {
    218                                     jQuery('.jqplot-table-legend').hide();
     218                                    jQuery('#rjqc_container_$id .jqplot-table-legend').hide();
    219219                                } else {
    220                                     jQuery('.jqplot-table-legend').show();
     220                                    jQuery('#rjqc_container_$id .jqplot-table-legend').show();
    221221                                }
    222222
    223223                                jQuery('#rjqc_container_$id').bind('jqplotDataMouseOver', function (ev, seriesIndex, pointIndex, data) {
    224                                     jQuery('.jqplot-highlighter-tooltip').html('' + data[1] + '$tooltipSuffix');
     224                                    jQuery('#rjqc_container_$id .jqplot-highlighter-tooltip').html('' + data[1] + '$tooltipSuffix');
    225225                                });
    226226                                $(window).resize(function() {
Note: See TracChangeset for help on using the changeset viewer.