summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2008-07-17 08:09:46 +0000
committerMax Kremmel <xing@synapse.plus.com>2008-07-17 08:09:46 +0000
commit9e9aa89656463bfffd2ff9f6727cc4166f5028fa (patch)
tree66fb2f70463e93bf2b56ebc7b55fcaa9242a3903 /scripts
parentdba34e34898e5855992c1ebcd3126ef0446372ca (diff)
downloadkernel-9e9aa89656463bfffd2ff9f6727cc4166f5028fa.tar.gz
kernel-9e9aa89656463bfffd2ff9f6727cc4166f5028fa.tar.bz2
kernel-9e9aa89656463bfffd2ff9f6727cc4166f5028fa.zip
don't display spinner when we're closing dirs
Diffstat (limited to 'scripts')
-rw-r--r--scripts/BitFileBrowser.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/BitFileBrowser.js b/scripts/BitFileBrowser.js
index 4cc7d62..6348591 100644
--- a/scripts/BitFileBrowser.js
+++ b/scripts/BitFileBrowser.js
@@ -11,7 +11,6 @@ BitFileBrowser = {
"browse": function( relPath, state, configName ) {
if( relPath ) {
- BitBase.showSpinner();
if( state == 'close' ) {
$( relPath ).title = "open";
$( relPath+"-bitInsert" ).innerHTML = '';
@@ -19,6 +18,7 @@ BitFileBrowser = {
$( "image-"+relPath ).src = BitSystem.urls.iconstyle+"small/folder.png";
}
} else {
+ BitBase.showSpinner();
$(relPath).title = "close";
if( $( "image-"+relPath )) {
$( "image-"+relPath ).src = BitSystem.urls.iconstyle+"small/folder-open.png";