diff options
author | marijus <mario@mariovavti.com> | 2014-12-27 10:10:56 +0100 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-12-27 10:10:56 +0100 |
commit | 0cb0c2b1bfe22cb0fa983361a2f74d6b0fe6a596 (patch) | |
tree | f4f222d7d1d531e7246043fddcd57c484d38a59f /view/js/main.js | |
parent | 82d3c2a7e0e4ad3b7e46af090956efe66857278d (diff) | |
download | volse-hubzilla-0cb0c2b1bfe22cb0fa983361a2f74d6b0fe6a596.tar.gz volse-hubzilla-0cb0c2b1bfe22cb0fa983361a2f74d6b0fe6a596.tar.bz2 volse-hubzilla-0cb0c2b1bfe22cb0fa983361a2f74d6b0fe6a596.zip |
more work on files
Diffstat (limited to 'view/js/main.js')
-rw-r--r-- | view/js/main.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/js/main.js b/view/js/main.js index f49cea78c..f979f6b6f 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -844,11 +844,11 @@ function updateConvItems(mode,data) { } function filestorage(event,nick,id) { - $('#perms-panel-' + last_filestorage_id).html(''); + $('#perms-panel-' + last_filestorage_id).hide().html(''); $('#file-edit-' + id).spin('tiny'); delete acl; $.get('filestorage/' + nick + '/' + id + '/edit', function(data) { - $('#perms-panel-' + id).html(data); + $('#perms-panel-' + id).html(data).show(); $('#file-edit-' + id).spin(false); last_filestorage_id = id; }); |