@clintghosn wrote:
I have an ionic application that uses chart.js extensively.
Everything is working fine as expected when it is being run on the browser. (usingionic serve
). Perfect! However, when running on a device (android) I am getting the following error:
Uncaught SyntaxError: Duplicate data property in object literal not allowed in strict mode
Uncaught ReferenceError: Chart is not defined
and then these errors follow: (I know these errors were caused by the first error but it might help)
Uncaught Error: [$injector:modulerr] Failed to instantiate module starter due to: Error: [$injector:modulerr] Failed to instantiate module chart.js due to: Error: [$injector:nomod] Module 'chart.js' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument. http://errors.angularjs.org/1.4.3/$injector/nomod?p0=chart.js at file:///android_asset/www/lib/ionic/js/ionic.bundle.js:8895:12 at file:///android_asset/www/lib/ionic/js/ionic.bundle.js:10785:17 at ensure (file:///android_asset/www/lib/ionic/js/ionic.bundle.js:10709:38) 1at module (file:///android_asset/www/lib/ionic/js/ionic.bundle.js:10783:14) at file:///android_asset/www/lib/ionic/js/ionic.bundle.js:13189:22 at forEach (file:///android_asset/www/lib/ionic/js/ionic.bundle.js:9163:20) at loadModules (file:///android_asset/www/lib/ionic/js/ionic.bundle.js:13173:5) at file:///android_asset/www/lib/ionic/js/ionic.bundle.js:13190:40 at forEach (file:///android_asset/www/lib/ionic/js/ionic.bundle.js:9163:20) at loadModules
And this is my index.html:
<head> <meta charset="utf-8"> <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> <title></title> <link href="lib/ionic/css/ionic.css" rel="stylesheet"> <link href="lib/angular-chart/angular-chart.css" rel="stylesheet"> <link href="css/style.css" rel="stylesheet"> <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above <link href="css/ionic.app.css" rel="stylesheet"> --> <!-- ionic/angularjs js --> <script src="lib/ionic/js/ionic.bundle.js"></script> <!-- cordova script (this will be a 404 during development) --> <script src="cordova.js"></script> <!-- your app's js --> <script src="lib/chartjs/Chart.js"></script> <script src="lib/angular-chart/angular-chart.js"></script> <script src="js/app.js"></script> <script src="js/controllers.js"></script> <script src="js/factories.js"></script> </head> <body ng-app="starter"> <ion-nav-view></ion-nav-view> </body>
and this is app.js, where I mentioned chart.js:
angular.module('starter', ['ionic','chart.js'])
Posts: 1
Participants: 1