@widgetic/editor 3.10.35 → 3.10.36
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
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.36");
|
|
13351
13351
|
}
|
|
13352
13352
|
|
|
13353
13353
|
|
|
@@ -16683,7 +16683,7 @@ var UploadService = function (_EventsMixin) {
|
|
|
16683
16683
|
var _this = _possibleConstructorReturn(this, (UploadService.__proto__ || Object.getPrototypeOf(UploadService)).call(this));
|
|
16684
16684
|
|
|
16685
16685
|
_this.user = user.id;
|
|
16686
|
-
_this.maxFilesize = user.premium ?
|
|
16686
|
+
_this.maxFilesize = user.premium ? 250 : 100;
|
|
16687
16687
|
_this.token = token;
|
|
16688
16688
|
|
|
16689
16689
|
_this.files = [];
|
|
@@ -23652,7 +23652,7 @@ config = {
|
|
|
23652
23652
|
redirect_uri: 'https://widgetic.com/connect/soundcloud',
|
|
23653
23653
|
response_type: 'code',
|
|
23654
23654
|
state: 'encrypted_session_info',
|
|
23655
|
-
grant_type: '
|
|
23655
|
+
grant_type: 'refresh_token',
|
|
23656
23656
|
client_secret: '3173e3098379153d42084aba06fe3ec4',
|
|
23657
23657
|
api_url: 'https://api.soundcloud.com'
|
|
23658
23658
|
};
|
|
@@ -23775,6 +23775,7 @@ SoundCloudService = (function(superClass) {
|
|
|
23775
23775
|
SoundCloudService.prototype.fetchTracks = function(playlistId) {
|
|
23776
23776
|
var path;
|
|
23777
23777
|
path = playlistId ? "/playlists/" + playlistId : "/users/" + SC.userId + "/tracks";
|
|
23778
|
+
path += "?access=playable";
|
|
23778
23779
|
return this.SCGet(path).then((function(_this) {
|
|
23779
23780
|
return function(result) {
|
|
23780
23781
|
var tracks;
|