Changeset 496283
- Timestamp:
- 01/27/2012 08:43:33 PM (14 years ago)
- Location:
- lightview-plus/trunk
- Files:
-
- 2 edited
-
lightview-plus.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lightview-plus/trunk/lightview-plus.php
r496280 r496283 6 6 Author: Puzich 7 7 Author URI: http://www.puzich.com 8 Version: 3.0 8 Version: 3.0.1 9 9 Put in /wp-content/plugins/ of your Wordpress installation 10 10 */ … … 314 314 // prints all lightview special options 315 315 function get_data_lightview_options() { 316 $options = sprintf('background: { color: \'%s\', opacity: %1.2 f}, ', $this->get_option('lv_background_color'), $this->get_option('lv_background_opacity'));316 $options = sprintf('background: { color: \'%s\', opacity: %1.2F }, ', $this->get_option('lv_background_color'), $this->get_option('lv_background_opacity')); 317 317 $options .= sprintf('skin: \'%s\', ', $this->get_option('lv_skin')); 318 $options .= sprintf('border: { color: \'%s\', opacity: %1.2 f, size: %d }, ', $this->get_option('lv_border_color'), $this->get_option('lv_border_opacity'), $this->get_option('lv_border_size'));318 $options .= sprintf('border: { color: \'%s\', opacity: %1.2F, size: %d }, ', $this->get_option('lv_border_color'), $this->get_option('lv_border_opacity'), $this->get_option('lv_border_size')); 319 319 $options .= sprintf('controls: \'%s\', ', $this->get_option('lv_controls_type')); 320 $options .= sprintf('overlay: { background: \'%s\', opacity: %1.2 f, close: true }, ', $this->get_option('lv_overlay_color'), $this->get_option('lv_overlay_opacity'));320 $options .= sprintf('overlay: { background: \'%s\', opacity: %1.2F, close: true }, ', $this->get_option('lv_overlay_color'), $this->get_option('lv_overlay_opacity')); 321 321 $options .= sprintf('radius: { size: %d, position: \'border\' }, ', $this->get_option('lv_radius_size')); 322 322 323 323 if($this->get_option('lv_shadow')) { 324 $options .= sprintf('shadow: { color: \'%s\', opacity: %1.2 f, blur: %d }', $this->get_option('lv_shadow_color'), $this->get_option('lv_shadow_opacity'), $this->get_option('lv_shadow_blur'));324 $options .= sprintf('shadow: { color: \'%s\', opacity: %1.2F, blur: %d }', $this->get_option('lv_shadow_color'), $this->get_option('lv_shadow_opacity'), $this->get_option('lv_shadow_blur')); 325 325 } else { 326 326 $options .= 'shadow: false'; -
lightview-plus/trunk/readme.txt
r496280 r496283 8 8 Requires at least: 3.0 9 9 Tested up to: 3.3.1 10 Stable tag: 3.0 10 Stable tag: 3.0.1 11 11 12 12 Seamless integration of Lightview (similar to Lightbox, Thickbox, Floatbox, Thickbox, Fancybox) to create a nice overlay to display images and videos without the need to change html. … … 37 37 38 38 == Changelog == 39 40 = 3.0.1 = 41 * [FIX] small and fast fix to show floats in the right way. 39 42 40 43 = 3.0 =
Note: See TracChangeset
for help on using the changeset viewer.