@widgetic/editor 3.10.52 → 3.10.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dev/editor.js +13 -9
- package/lib/editor.js +1 -1
- package/package.json +1 -1
- package/src/editor/content/browser/upload.html +7 -1
package/package.json
CHANGED
|
@@ -312,7 +312,13 @@ export default {
|
|
|
312
312
|
})
|
|
313
313
|
.then(this.activate.bind(this))
|
|
314
314
|
.catch(this._reportError.bind(this))
|
|
315
|
-
.then(_ =>
|
|
315
|
+
.then(_ => {
|
|
316
|
+
// hide loading spinner
|
|
317
|
+
this.set({ loading: false, error: null })
|
|
318
|
+
|
|
319
|
+
// scroll to uploads files list to bottom
|
|
320
|
+
this.scrollToListBottom();
|
|
321
|
+
});
|
|
316
322
|
},
|
|
317
323
|
|
|
318
324
|
deleteSelected() {
|