oauth2-angularjs-chrome-extension-demo
oauth2-angularjs-chrome-extension-demo copied to clipboard
error on popup.html
I am not sure if currently logged into Google. Chrome Version 59.0.3071.115 (Official Build) (64-bit) on OSX
Failed to load resource: net::ERR_FILE_NOT_FOUND json-formatter.min.css
angular-route.min.js:8 Uncaught TypeError: d.module(...).info is not a function
at angular-route.min.js:8
at angular-route.min.js:16
jquery.min.js:2 Uncaught Error: [$injector:modulerr] http://errors.angularjs.org/1.5.7/$injector/modulerr?p0=myApp&p1=Error%3A%2…ihedaelpgocelbihogfla%2Fapp%2Fvendor%2Fangular%2Fangular.min.js%3A43%3A246)
at angular.min.js:6
at angular.min.js:40
at r (angular.min.js:7)
at g (angular.min.js:39)
at db (angular.min.js:43)
at c (angular.min.js:20)
at Bc (angular.min.js:21)
at ge (angular.min.js:19)
at HTMLDocument.
I cloned it today and had the same issue. Fixed json-formatter with
bower install json-formatter --save
But still have the Angular issues
Fixed Uncaught TypeError: d.module(...).info is not a function
by specifying Angular version 1.6.9 in bower.json
and running bower install --force
after that.
Also works with following bower.json dependencies:
"dependencies": {
"angular": "1.5.7",
"angular-local-storage": "^0.2.7",
"bootstrap": "~3.2.0",
"angular-route": "1.5.7",
"json-formatter": "^0.7.0"
},