AngularJs ReferenceError: angular is not defined

FAvIo41 picture FAvIo41 · Jan 10, 2013 · Viewed 109k times · Source

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

Answer

Vũ Ngô picture Vũ Ngô · Apr 12, 2013

You should put the include angular line first, before including any other js file