Open GoogleCodeExporter opened 8 years ago
Hi,
I tryed this:
a) append new param
var options = {
...
useContainer: true // Use surrounding container (containerClass)?
};
b) modified init function
this row:
$container = $("<div></div>")
.addClass(options.containerClass)
.attr('id', options.containerClass + index);
replaced by:
if(options.useContainer) {
$container = $("<div></div>")
.addClass(options.containerClass)
.attr('id', options.containerClass + index);
} else {
$container = $original;
}
On FF (linux), IE7 (winxp) it looks working.
Original comment by vladimir...@rwe.cz
on 6 Jan 2009 at 3:50
Hi, previous code is not working when there are two (or more) multiples on
page....
Original comment by vladimir...@rwe.cz
on 9 Jan 2009 at 6:20
Original comment by ryancram...@gmail.com
on 21 Feb 2009 at 3:47
Original issue reported on code.google.com by
vladimir...@rwe.cz
on 6 Jan 2009 at 3:26