Changeset 347176
- Timestamp:
- 02/18/2011 02:17:47 AM (15 years ago)
- Location:
- jj-nextgen-jquery-carousel/trunk
- Files:
-
- 3 edited
-
includes/jj_ngg_jquery_carousel.php (modified) (3 diffs)
-
jj-ngg-jquery-carousel.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jj-nextgen-jquery-carousel/trunk/includes/jj_ngg_jquery_carousel.php
r341656 r347176 128 128 if($gap != '') 129 129 { 130 $output .= "\n div#" . $html_id . "_container ." . $skin_class . " .jcarousel-item-horizontal { margin-right: " . $gap . "px !important; }";131 $output .= "\n div#" . $html_id . "_container ." . $skin_class . " .jcarousel-direction-rtl .jcarousel-item-horizontal { margin-left: " . $gap . "px !important; }";130 $output .= "\n div#" . $html_id . "_container ." . $skin_class . " .jcarousel-item-horizontal { margin-right: " . $gap . "px; }"; 131 $output .= "\n div#" . $html_id . "_container ." . $skin_class . " .jcarousel-direction-rtl .jcarousel-item-horizontal { margin-left: " . $gap . "px; }"; 132 132 } 133 133 } … … 154 154 } 155 155 } 156 $output .= "\n div#" . $html_id . "_container ." . $skin_class . " .jcarousel-item { width: " . $width . "px !important; height: " . $height . "px !important; }";156 $output .= "\n div#" . $html_id . "_container ." . $skin_class . " .jcarousel-item { width: " . $width . "px; height: " . $height . "px; }"; 157 157 $output .= "\n</style>"; 158 158 } … … 260 260 $output .= "{" . implode(",", $javascript_args) . "}"; 261 261 } 262 $output .= ");"; 262 $output .= ");"; 263 264 // Hack to make jcarousel work with gaps 265 if($width != '') { 266 $output .= "\n jQuery('ul#" . $html_id . " li').width(" . $width . ");"; 267 } 263 268 $output .= "\n</script>\n"; 264 269 -
jj-nextgen-jquery-carousel/trunk/jj-ngg-jquery-carousel.php
r346019 r347176 4 4 Description: Allows you to pick a gallery from the 'NextGen Gallery' plugin to use as a 'JQuery JCarousel'. 5 5 Author: JJ Coder 6 Version: 1.1. 46 Version: 1.1.5 7 7 */ 8 8 -
jj-nextgen-jquery-carousel/trunk/readme.txt
r346019 r347176 5 5 Requires at least: 2.8 6 6 Tested up to: 3.0.5 7 Stable tag: 1.1. 47 Stable tag: 1.1.5 8 8 9 9 Allows you to pick a gallery from the 'NextGen Gallery' plugin to use as a 'JQuery JCarousel'. … … 111 111 == Changelog == 112 112 113 - 1.1.5: Gap fixes. 113 114 - 1.1.4: Readme. 114 115 - 1.1.3: Readme.
Note: See TracChangeset
for help on using the changeset viewer.