Guys.. Having a small issue in downgrading the following code from mootools 1.3 to 1.11. I hit the road block as i am not much familiar with the Mootools Effects. Pl help me rewrite this code
var first = this.pContent.getFirst(),
last = this.pContent.getLast() //this is actually a div
// The previous node (old page) is moving either 750 or -750
// shift left = -750, shift right = 750
if(first!=last) {
var firstLeft = this.convert(last.getStyle('left').replace('px',''));
first.set('morph', {duration: this.options.duration, transition: this.options.transition, onComplete: function () { first.destroy(); }});
first.morph({left:[0, firstLeft], opacity:0});
}
// The last node (new page) is always moving to 0px
last.set('morph', {duration: this.options.duration, transition: this.options.transition});
last.morph({left:0});