8 lines
132 B
JavaScript
8 lines
132 B
JavaScript
window.canSortTo = function(event, from, to)
|
|
{
|
|
if(!from || !to) return false;
|
|
if(to.icon) return false;
|
|
|
|
return true;
|
|
}
|