Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted by daves ( 14 years ago )
$(document).ready(
function() {
var $selectedFile;
$('li.finderCategoryFile').mousedown(
function() {
if ($selectedFile && $selectedFile.length) {
$selectedFile.removeClass('finderCategoryFileSelected');
}
$selectedFile = $(this);
$selectedFile.addClass('finderCategoryFileSelected');
}
);
$('ul#finderCategoryFiles').sortable({
connectWith : [
'ul#finderOtherCategoryFiles'
],
placeholder: 'finderCategoryFilePlaceholder',
opacity: 0.8,
cursor: 'move'
});
$('ul#finderOtherCategoryFiles').sortable({
connectWith : [
'ul#finderCategoryFiles'
],
placeholder: 'finderCategoryFilePlaceholder',
opacity: 0.8,
cursor: 'move'
});
}
);
Revise this Paste
Parent: 48945
Children: 48951