I'm having trouble with the Sortables plugin, and I'm wondering if I'm
doing something wrong or perhaps there is a bug.
It doesn't seem to be letting me use the cloneOpacity or
elementOpacity options.
Here is my code (using the full "core" and full "more"):
======================================
window.addEvent('domready', function() {
var mySortables = new Sortables('ItemList', {
constrain: true,
clone: true,
cloneOpacity: 0.5,
elementOpacity: 0.5,
revert: { duration: 500, transition:
Fx.Transitions.Bounce.easeOut }
});
});
markup:
<ul id="ItemList">
<li>
<h3 style="background-color:blue;">TEST</h3>
</li>
<li>
<h3 style="background-color:red;">TEST</h3>
</li>
<li>
<h3 style="background-color:green;">TEST</h3>
</li>
</ul>
======================================
Can anyone help me understand why this isn't working as it should?
Thanks!
Ben