Sorting links problem in mootools 1.2

After a month of research, asking and trying to get help to solve the sorting links on fav20 , using Sortables, without them opening on release, after constant presure from users feedback about the sorting problem, I managed to find a solution on my own. 

Here is the solution

var stopsort = function(e){ e.stop(); }
var startsort = function(){ this.removeEvent(‘click’,stopsort); }

onStart:function(el){
el.getElements(‘a’).each(function(atag){
   atag.addEvent(‘click’,stopsort);
});
},

onComplete:function(el){
el.getElements(‘a’).each(function(atag){
  startsort.delay(50,atag);
});
}

Sorting websites with Fav20

I tried to add many times the Sorting of site feature on fav20, but because it is built on MooTools javascript framework, version 1.1, I couln’t do the sorting. I tried with v1.2b, sorting worked, but messed up the other code (even with compatible mode).

When mootools v1.2 will be final, I can rewrite the code to implement the sorting.

If you have any other suggestions feel free.