OGKevin / ComBunqWebApp

A Bunq web interface made by bunqers
https://bunqweb.com
MIT License
26 stars 3 forks source link

Uncaught ReferenceError when loading payments table #51

Closed basst85 closed 7 years ago

basst85 commented 7 years ago

Error in console:

decrypt.js:241 Uncaught ReferenceError: numeral is not defined at createTable (decrypt.js:241) at Object. (decrypt.js:137) at i (jquery.min.js:2) at Object.fireWith [as resolveWith] (jquery.min.js:2) at A (jquery.min.js:4) at XMLHttpRequest. (jquery.min.js:4)

referenceerror

Tested in template branch.

OGKevin commented 7 years ago

@basst85 It might be that you haven't run npm install to install numeral, it is included in the package.json

If this doesn't fix this error than I might need to dig deeper.

basst85 commented 7 years ago

@OGKevin I think i forget the npm install, oops.. But when i run npm install i get this error: http://termbin.com/7t1s

OGKevin commented 7 years ago

@basst85 Wow thats a hell of a log😧😅. Im gonna take a quick guess and say it might be gulp.

Try deleting the node_modules folder created by npm and runnpm install --production to install the packages without semantic, which needs gulp.

The folder should be in the root directory of the project.

basst85 commented 7 years ago

@OGKevin Check only end of log ;-) I've deleted the node_modules folder and then executed npm install --production, but no luck.. getting the same error.

basst85 commented 7 years ago

It works after reinstalling nodejs and npm

OGKevin commented 7 years ago

Nice!