fix filepicker loading spinner

remotes/origin/dav-zip-folder
Christoph Wurst 10 years ago
parent 2895c91291
commit 9778094a25
  1. 2
      core/css/styles.css
  2. 6
      core/js/oc-dialogs.js

@ -1025,7 +1025,7 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin
#oc-dialog-filepicker-content .dirtree span:not(:last-child)::after { content: '>'; padding: 3px;}
#oc-dialog-filepicker-content .filelist {
overflow-y:auto;
max-height: 300px;
height: 300px;
background-color:white;
width:100%;
}

@ -171,7 +171,6 @@ var OCdialogs = {
$('body').append(self.$filePicker);
self.$filePicker.ready(function() {
self.$filelist = self.$filePicker.find('.filelist');
self.$dirTree = self.$filePicker.find('.dirtree');
@ -738,9 +737,10 @@ var OCdialogs = {
var dirs = [];
var others = [];
var self = this;
this.$filelist.empty().addClass('loading');
this.$filelist.empty().addClass('icon-loading');
this.$filePicker.data('path', dir);
$.when(this._getFileList(dir, this.$filePicker.data('mimetype'))).then(function(response) {
$.each(response.data.files, function(index, file) {
if (file.type === 'dir') {
dirs.push(file);
@ -772,7 +772,7 @@ var OCdialogs = {
self.$filelist.append($li);
});
self.$filelist.removeClass('loading');
self.$filelist.removeClass('icon-loading');
if (!OC.Util.hasSVGSupport()) {
OC.Util.replaceSVG(self.$filePicker.find('.dirtree'));
}

Loading…
Cancel
Save