javascriptangularjssinglepage

AngularJs ReferenceError: angular is not defined


I trying to add a custom filter, but if I use the following code:

angular.module('myApp',[]).filter('startFrom', function() {
    return function(input, start) {
        start = +start; //parse to int
        return input.slice(start);
    }
});

But if I do so, I get: "ReferenceError: angular is not defined" in firebug.

The rest of application is working fine, I am using ng-app in a tag div not in tag html, and https://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.js


Solution

  • Well in the way this is a single page application, the solution used was:

    load the content with AJAX, like any other controller, and then call:

    angular.bootstrap($('#your_div_loaded_in_ajax'),["myApp","other_module"]);