Plugin Directory

Changeset 758015


Ignore:
Timestamp:
08/18/2013 08:02:23 PM (12 years ago)
Author:
Columcille
Message:

Tag 2.3.4 with a fix for passing options to Tippy

Location:
glossy
Files:
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • glossy/tags/2.3.4/glossy.php

    r757704 r758015  
    44Plugin URI: http://croberts.me/glossy/
    55Description: Makes it easy to create site-wide glossary or dictionary entries which pop up using the Tippy plugin
    6 Version: 2.3.3
     6Version: 2.3.4
    77Author: Chris Roberts
    88Author URI: http://croberts.me/
     
    302302                    $tippyValues['headertext'] = $tippyHeader;
    303303                    $tippyValues['title'] = $tippyTitle;
    304                     $tippyValues['href'] = $gs_data['link'];
    305304                    $tippyValues['text'] = $gs_contents;
    306305                    $tippyValues['class'] = isset($attributes['class']) ? $attributes['class'] .'glossy_tip' : 'glossy_tip';
    307                     $tippyValues['item'] = 'glossy';
    308                     $tippyValues['width'] = $gs_dimensions['width'];
    309                     $tippyValues['height'] = $gs_dimensions['height'];
     306                   
     307                    if (isset($gs_data['link']) && !empty($gs_data['link'])) {
     308                        $tippyValues['href'] = $gs_data['link'];
     309                    }
     310                   
     311                    if (isset($gs_data['width']) && !empty($gs_data['width'])) {
     312                        $tippyValues['width'] = $gs_data['width'];
     313                    }
     314                   
     315                    if (isset($gs_data['height']) && !empty($gs_data['height'])) {
     316                        $tippyValues['height'] = $gs_data['height'];
     317                    }
    310318                   
    311319                    $tippyLink = Tippy::getLink($tippyValues);
  • glossy/tags/2.3.4/readme.txt

    r757704 r758015  
    44Requires at least: 3.3
    55Tested up to: 3.5.1
    6 Stable tag: 2.3.3
     6Stable tag: 2.3.4
    77
    88Glossy allows you to define information text that can be used throughout your site with a simple shortcode.
     
    3737
    3838== Changelog ==
     39
     40= 2.3.4 =
     41* Fixed how the options are passed to Tippy.
    3942
    4043= 2.3.3 =
  • glossy/trunk/glossy.php

    r757704 r758015  
    44Plugin URI: http://croberts.me/glossy/
    55Description: Makes it easy to create site-wide glossary or dictionary entries which pop up using the Tippy plugin
    6 Version: 2.3.3
     6Version: 2.3.4
    77Author: Chris Roberts
    88Author URI: http://croberts.me/
     
    302302                    $tippyValues['headertext'] = $tippyHeader;
    303303                    $tippyValues['title'] = $tippyTitle;
    304                     $tippyValues['href'] = $gs_data['link'];
    305304                    $tippyValues['text'] = $gs_contents;
    306305                    $tippyValues['class'] = isset($attributes['class']) ? $attributes['class'] .'glossy_tip' : 'glossy_tip';
    307                     $tippyValues['item'] = 'glossy';
    308                     $tippyValues['width'] = $gs_dimensions['width'];
    309                     $tippyValues['height'] = $gs_dimensions['height'];
     306                   
     307                    if (isset($gs_data['link']) && !empty($gs_data['link'])) {
     308                        $tippyValues['href'] = $gs_data['link'];
     309                    }
     310                   
     311                    if (isset($gs_data['width']) && !empty($gs_data['width'])) {
     312                        $tippyValues['width'] = $gs_data['width'];
     313                    }
     314                   
     315                    if (isset($gs_data['height']) && !empty($gs_data['height'])) {
     316                        $tippyValues['height'] = $gs_data['height'];
     317                    }
    310318                   
    311319                    $tippyLink = Tippy::getLink($tippyValues);
  • glossy/trunk/readme.txt

    r757704 r758015  
    44Requires at least: 3.3
    55Tested up to: 3.5.1
    6 Stable tag: 2.3.3
     6Stable tag: 2.3.4
    77
    88Glossy allows you to define information text that can be used throughout your site with a simple shortcode.
     
    3737
    3838== Changelog ==
     39
     40= 2.3.4 =
     41* Fixed how the options are passed to Tippy.
    3942
    4043= 2.3.3 =
Note: See TracChangeset for help on using the changeset viewer.