Changeset 758015
- Timestamp:
- 08/18/2013 08:02:23 PM (12 years ago)
- Location:
- glossy
- Files:
-
- 2 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
glossy/tags/2.3.4/glossy.php
r757704 r758015 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. 36 Version: 2.3.4 7 7 Author: Chris Roberts 8 8 Author URI: http://croberts.me/ … … 302 302 $tippyValues['headertext'] = $tippyHeader; 303 303 $tippyValues['title'] = $tippyTitle; 304 $tippyValues['href'] = $gs_data['link'];305 304 $tippyValues['text'] = $gs_contents; 306 305 $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 } 310 318 311 319 $tippyLink = Tippy::getLink($tippyValues); -
glossy/tags/2.3.4/readme.txt
r757704 r758015 4 4 Requires at least: 3.3 5 5 Tested up to: 3.5.1 6 Stable tag: 2.3. 36 Stable tag: 2.3.4 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.4 = 41 * Fixed how the options are passed to Tippy. 39 42 40 43 = 2.3.3 = -
glossy/trunk/glossy.php
r757704 r758015 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. 36 Version: 2.3.4 7 7 Author: Chris Roberts 8 8 Author URI: http://croberts.me/ … … 302 302 $tippyValues['headertext'] = $tippyHeader; 303 303 $tippyValues['title'] = $tippyTitle; 304 $tippyValues['href'] = $gs_data['link'];305 304 $tippyValues['text'] = $gs_contents; 306 305 $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 } 310 318 311 319 $tippyLink = Tippy::getLink($tippyValues); -
glossy/trunk/readme.txt
r757704 r758015 4 4 Requires at least: 3.3 5 5 Tested up to: 3.5.1 6 Stable tag: 2.3. 36 Stable tag: 2.3.4 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.4 = 41 * Fixed how the options are passed to Tippy. 39 42 40 43 = 2.3.3 =
Note: See TracChangeset
for help on using the changeset viewer.