@widgetic/editor 3.10.44 → 3.10.45
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 +3 -3
- package/lib/editor.js +1 -1
- package/package.json +1 -1
- package/src/core/services/uploads.js +2 -2
package/lib/dev/editor.js
CHANGED
|
@@ -13347,7 +13347,7 @@ WidgetEditor = (function(superClass) {
|
|
|
13347
13347
|
this.el.append(this.tabs.el);
|
|
13348
13348
|
LoginPopup.place(this.el);
|
|
13349
13349
|
Blogvio.pubsub.subscribe('api/token/update', this._updateLoggedInStatus);
|
|
13350
|
-
this.el.attr('editorVersion', "3.10.
|
|
13350
|
+
this.el.attr('editorVersion', "3.10.45");
|
|
13351
13351
|
}
|
|
13352
13352
|
|
|
13353
13353
|
|
|
@@ -16762,7 +16762,7 @@ var UploadService = function (_EventsMixin) {
|
|
|
16762
16762
|
var id = response.files.data[0].id;
|
|
16763
16763
|
|
|
16764
16764
|
// read quota from response
|
|
16765
|
-
this.quota = response.quota.max;
|
|
16765
|
+
// this.quota = response.quota.max;
|
|
16766
16766
|
this.used = response.quota.used;
|
|
16767
16767
|
|
|
16768
16768
|
this._update(uploadFile, function (f) {
|
|
@@ -16847,7 +16847,7 @@ var UploadService = function (_EventsMixin) {
|
|
|
16847
16847
|
_this3.refreshed[type] = true;
|
|
16848
16848
|
|
|
16849
16849
|
// read quota from response
|
|
16850
|
-
|
|
16850
|
+
// this.quota = response.quota.max;
|
|
16851
16851
|
_this3.used = response.quota.used;
|
|
16852
16852
|
|
|
16853
16853
|
return response.files.data.map(function (file) {
|