You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That's caused by this call in the dist/pptxgen.js:1522 Promise.all( arrChartPromises )
in the file bower.json:10 there is the dependency of promise: "promise": "^0.2.2"
PromiseJS doesn't have implemented all()
The main question is Promise is implemented by ECMAScript 2015 (6th Edition, ECMA-262) according with MSN
Chrome - 32.0
Edge - (Yes)
Firefox - 29.0
Internet Explorer - No
Opera - 19
Safari - 7.1
Just removing the dependency of promise will make the the browser use the native Promise from ECMA and finish this problem, that I belive only occours installing through bower.
The text was updated successfully, but these errors were encountered:
bartolomeu
changed the title
Promise Dependency
Promise Dependency - TypeError: Promise.all is not a function
Sep 15, 2017
When I use pptx.save() throws
That's caused by this call in the dist/pptxgen.js:1522
Promise.all( arrChartPromises )
in the file bower.json:10 there is the dependency of promise:
"promise": "^0.2.2"
PromiseJS doesn't have implemented
all()
The main question is Promise is implemented by ECMAScript 2015 (6th Edition, ECMA-262) according with MSN
Just removing the dependency of promise will make the the browser use the native Promise from ECMA and finish this problem, that I belive only occours installing through bower.
The text was updated successfully, but these errors were encountered: