yWeb/Y_Filemgr: minor cleanup

Origin commit data
------------------
Branch: ni/coolstream
Commit: 6923035a46
Author: vanhofen <vanhofen@gmx.de>
Date: 2023-02-14 (Tue, 14 Feb 2023)

Origin message was:
------------------
- yWeb/Y_Filemgr: minor cleanup

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2023-02-14 23:56:16 +01:00
parent e7f328caae
commit 343230c813

View File

@@ -301,11 +301,6 @@ function init(){
do_dirview("/"); do_dirview("/");
} }
//alert($('adetails'));
//alert($('work'));
//var arc = new accordion('adetails');
//new Control.Tabs('tab_group_one');
/* --------------------------------------------------------------*/ /* --------------------------------------------------------------*/
function on_before_dirview(){ function on_before_dirview(){
show_path_and_item(); show_path_and_item();
@@ -338,17 +333,13 @@ function _hide_diags(){
function show_prop(){ function show_prop(){
if (explorer.ac_item != "") { if (explorer.ac_item != "") {
$('item').update(explorer.ac_item); $('item').update(explorer.ac_item);
// $('prop','prop_toolbar').invoke('show');
$('prop_toolbar').show(); $('prop_toolbar').show();
$('details').show(); $('details').show();
// $$('.detail_title','.detail_content').invoke('show');
} }
else { else {
$('item').update("nothing selected"); $('item').update("nothing selected");
// $('prop','prop_toolbar').invoke('hide');
$('prop_toolbar').hide(); $('prop_toolbar').hide();
$('details').hide(); $('details').hide();
// $$('.detail_title','.detail_content').invoke('hide');
} }
_hide_diags(); _hide_diags();
} }