R
Renato Teixeira
Guest
Maybe progress.js is calling $ promise without passing resolving/rejecting parameters. I just handle it adding this two lines of code: line 48 pwrapper.js resolve: function () { if (deferred.resolve) << deferred.resolve(arguments); }, reject: function () { if (deferred.reject) << deferred.reject(arguments); } and everything seems work fine. Not sure if I can have issues later with it.
Continue reading...
Continue reading...