I am trying to use make a angularJS web app. I bought a template, which has all of its controllers, routes and directives in a single file app.js
This is my first angularJS app, or actually my first front-end work. Trying to be a Full Stack geek now.. :D
So here is now where I am stuck. The app works completely fine, but when I add a new controller AuthCtrl which in another file auth.js it gives me an error saying AppCtrl not found. Following HTML will make you understand it better. I have pointed out where and what is the exact problem in the code snippet.
<!doctype html>
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>PropheSee Dashboard</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic" rel="stylesheet" type="text/css">
<!-- Needs images, font... therefore can not be part of main.css -->
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="bower_components/weather-icons/css/weather-icons.min.css">
<!-- end Needs images -->
<link rel="stylesheet" href="styles/main.css">
</head>
<body data-ng-app="app" id="app" class="app" data-custom-page="" data-off-canvas-nav="" data-ng-controller="AppCtrl" data-ng-class=" {'layout-boxed': admin.layout === 'boxed' } ">
<div data-ng-controller="AuthCtrl" data-ng-app="app">
<ul>
<li ng-repeat="phone in phones">
{{phone.name}}
<p>{{phone.snippet}}</p>
</li>
</ul>
</div>
<%-body%>
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script src="scripts/vendor.js"></script>
<script src="scripts/ui.js"></script>
<script src="scripts/app.js"></script>
<!--
This is where the problem is. As soon as I add the following line to use AuthCtrl,
It says AppCtrl not found. Is it that I can't use more than one import for controllers? Or is there a problem in the way I am doing the imports?
-->
<script src="scripts/controllers/auth.js"></script>
</body>
Edit - AuthCtrl
var app = angular.module('app', []);
app.controller('AuthCtrl', function ($scope) {
$scope.phones = [
{'name': 'Nexus S',
'snippet': 'Fast just got faster with Nexus S.'},
{'name': 'Motorola XOOM™ with Wi-Fi',
'snippet': 'The Next, Next Generation tablet.'},
{'name': 'MOTOROLA XOOM™',
'snippet': 'The Next, Next Generation tablet.'}
];
});
App.js snippet
(function() {
"use strict";
angular.module("app.chart.ctrls",[])
.controller("chartCtrl",[
"$scope",
function($scope){ ....