Changeset 781082
- Timestamp:
- 10/01/2013 09:41:46 PM (12 years ago)
- Location:
- glossy
- Files:
-
- 2 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
glossy/tags/2.3.5/glossy.php
r758015 r781082 4 4 Plugin URI: http://croberts.me/glossy/ 5 5 Description: Makes it easy to create site-wide glossary or dictionary entries which pop up using the Tippy plugin 6 Version: 2.3. 46 Version: 2.3.5 7 7 Author: Chris Roberts 8 8 Author URI: http://croberts.me/ … … 309 309 } 310 310 311 if ( isset($gs_data['width']) && !empty($gs_data['width'])) {312 $tippyValues['width'] = $gs_d ata['width'];311 if ($gs_dimensions['width']) { 312 $tippyValues['width'] = $gs_dimensions['width']; 313 313 } 314 314 315 if ( isset($gs_data['height']) && !empty($gs_data['height'])) {316 $tippyValues['height'] = $gs_d ata['height'];315 if ($gs_dimensions['height']) { 316 $tippyValues['height'] = $gs_dimensions['height']; 317 317 } 318 318 -
glossy/tags/2.3.5/readme.txt
r758015 r781082 3 3 Tags: glossary, dictionary, tooltip, popup 4 4 Requires at least: 3.3 5 Tested up to: 3. 5.16 Stable tag: 2.3. 45 Tested up to: 3.6.1 6 Stable tag: 2.3.5 7 7 8 8 Glossy allows you to define information text that can be used throughout your site with a simple shortcode. … … 37 37 38 38 == Changelog == 39 40 = 2.3.5 = 41 * Fixed an issue setting the width and height 39 42 40 43 = 2.3.4 = -
glossy/trunk/glossy.php
r758015 r781082 4 4 Plugin URI: http://croberts.me/glossy/ 5 5 Description: Makes it easy to create site-wide glossary or dictionary entries which pop up using the Tippy plugin 6 Version: 2.3. 46 Version: 2.3.5 7 7 Author: Chris Roberts 8 8 Author URI: http://croberts.me/ … … 309 309 } 310 310 311 if ( isset($gs_data['width']) && !empty($gs_data['width'])) {312 $tippyValues['width'] = $gs_d ata['width'];311 if ($gs_dimensions['width']) { 312 $tippyValues['width'] = $gs_dimensions['width']; 313 313 } 314 314 315 if ( isset($gs_data['height']) && !empty($gs_data['height'])) {316 $tippyValues['height'] = $gs_d ata['height'];315 if ($gs_dimensions['height']) { 316 $tippyValues['height'] = $gs_dimensions['height']; 317 317 } 318 318 -
glossy/trunk/readme.txt
r758015 r781082 3 3 Tags: glossary, dictionary, tooltip, popup 4 4 Requires at least: 3.3 5 Tested up to: 3. 5.16 Stable tag: 2.3. 45 Tested up to: 3.6.1 6 Stable tag: 2.3.5 7 7 8 8 Glossy allows you to define information text that can be used throughout your site with a simple shortcode. … … 37 37 38 38 == Changelog == 39 40 = 2.3.5 = 41 * Fixed an issue setting the width and height 39 42 40 43 = 2.3.4 =
Note: See TracChangeset
for help on using the changeset viewer.