Plugin Directory

Changeset 781082


Ignore:
Timestamp:
10/01/2013 09:41:46 PM (12 years ago)
Author:
Columcille
Message:

Tagging 2.3.5 with fix for width/height

Location:
glossy
Files:
2 edited
4 copied

Legend:

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

    r758015 r781082  
    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.4
     6Version: 2.3.5
    77Author: Chris Roberts
    88Author URI: http://croberts.me/
     
    309309                    }
    310310                   
    311                     if (isset($gs_data['width']) && !empty($gs_data['width'])) {
    312                         $tippyValues['width'] = $gs_data['width'];
     311                    if ($gs_dimensions['width']) {
     312                        $tippyValues['width'] = $gs_dimensions['width'];
    313313                    }
    314314                   
    315                     if (isset($gs_data['height']) && !empty($gs_data['height'])) {
    316                         $tippyValues['height'] = $gs_data['height'];
     315                    if ($gs_dimensions['height']) {
     316                        $tippyValues['height'] = $gs_dimensions['height'];
    317317                    }
    318318                   
  • glossy/tags/2.3.5/readme.txt

    r758015 r781082  
    33Tags: glossary, dictionary, tooltip, popup
    44Requires at least: 3.3
    5 Tested up to: 3.5.1
    6 Stable tag: 2.3.4
     5Tested up to: 3.6.1
     6Stable tag: 2.3.5
    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.5 =
     41* Fixed an issue setting the width and height
    3942
    4043= 2.3.4 =
  • glossy/trunk/glossy.php

    r758015 r781082  
    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.4
     6Version: 2.3.5
    77Author: Chris Roberts
    88Author URI: http://croberts.me/
     
    309309                    }
    310310                   
    311                     if (isset($gs_data['width']) && !empty($gs_data['width'])) {
    312                         $tippyValues['width'] = $gs_data['width'];
     311                    if ($gs_dimensions['width']) {
     312                        $tippyValues['width'] = $gs_dimensions['width'];
    313313                    }
    314314                   
    315                     if (isset($gs_data['height']) && !empty($gs_data['height'])) {
    316                         $tippyValues['height'] = $gs_data['height'];
     315                    if ($gs_dimensions['height']) {
     316                        $tippyValues['height'] = $gs_dimensions['height'];
    317317                    }
    318318                   
  • glossy/trunk/readme.txt

    r758015 r781082  
    33Tags: glossary, dictionary, tooltip, popup
    44Requires at least: 3.3
    5 Tested up to: 3.5.1
    6 Stable tag: 2.3.4
     5Tested up to: 3.6.1
     6Stable tag: 2.3.5
    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.5 =
     41* Fixed an issue setting the width and height
    3942
    4043= 2.3.4 =
Note: See TracChangeset for help on using the changeset viewer.