blob: ddab06f5df8342f20fd2fe541000a487892083bb (
plain) (
blame)
1
2
3
4
5
6
7
8
|
$('#id_destination').after($('#dest_selector').remove());
$('#id_destination').attr('type', 'hidden');
function select_path(path, title) {
$('#id_destination').val(path);
if (title == "(root)") title = "";
$('#dest_selector .dest_selector_title').html(title ? title : " / ");
}
|