SoundJS's AbstractPlugin.js had a set method problem, At version 1.0.0
See original GitHub issuehttps://github.com/CreateJS/SoundJS/blob/master/src/soundjs/AbstractPlugin.js
/**
* Handles internal preload completion.
* @method _handlePreloadComplete
* @param event
* @protected
*/
p._handlePreloadComplete = function (event) {
var src = event.target.getItem().src;
this._audioSources[src] = event.result;
for (var i = 0, l = this._soundInstances[src].length; i < l; i++) {
var item = this._soundInstances[src][i];
item.setPlaybackResource(this._audioSources[src]);
// ToDo consider adding play call here if playstate == playfailed
this._soundInstances[src] = null;
}
};
This method call a set method named setPlaybackResource, then the method is replaced with a setter but without a deprecated wrapper.
It may cause bug as below.
Thanks you !
Issue Analytics
- State:
- Created 6 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Module not found: Error: Can't resolve 'core-js/es6'
@KamilNaja I am facing the same problem and the folder (core-js/es6) does not exist in my node_modules, I have (core-js/es) in my node_modules....
Read more >Backbone.js
Philosophically, Backbone is an attempt to discover the minimal set of data-structuring (models and collections) and user interface (views and URLs) ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The second issue is documented here: https://github.com/CreateJS/SoundJS/issues/283
I am closing this one for now.
Okay, that explains it, I’m using the latest download, 1.0.0