Всем привет, только начал разбираться с angular, прошу строго не судить. Попрошу Вас пояснить, почему не подгружается js, в следующем случае:
var app = angular.module("app", ["ngRoute"])
.config(function ($routeProvider) {
$routeProvider
.when("/", {
template: "Main!",
controller: "homeController" })
.when("/Application", {
templateUrl: "info.html",
controller: "playersController" })
})
.controller("homeController", function ($scope) {
$scope.message = "Home Page"; })
.controller("playersController", function ($scope, $http) {
$http.get("info.json")
.then(function (response) {
$scope.players = response.data;
})
})
Соответственно когда перехожу на /Application ( templateUrl: "info.html" ) не грузится скрипт, который находится в info.html, разметка в свою очередь подгружается корректно.
Спасибо!