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);
});
}