@widgetic/editor 3.10.46 → 3.10.47
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.47");
|
|
13351
13351
|
}
|
|
13352
13352
|
|
|
13353
13353
|
|
|
@@ -16690,10 +16690,10 @@ var UploadService = function (_EventsMixin) {
|
|
|
16690
16690
|
_this.files = [];
|
|
16691
16691
|
|
|
16692
16692
|
// max file size in MB
|
|
16693
|
-
_this.maxFilesize = user.premium ? 250 : 25; // MB limit / file for premium / free
|
|
16693
|
+
_this.maxFilesize = user.premium ? 250 : 25; // MB limit / file for premium / free plan
|
|
16694
16694
|
|
|
16695
16695
|
// max quota in bytes
|
|
16696
|
-
_this.quota = (user.premium ?
|
|
16696
|
+
_this.quota = (user.premium ? 10000 : 250) * 1000 * 1000; // total quota for premium / free plan
|
|
16697
16697
|
|
|
16698
16698
|
// used quota in bytes
|
|
16699
16699
|
_this.used = 0;
|