Is it possible to use Angularjs\'s routing and controller without the templateURL?
For instance, below is my current routes, controllers, and template urls,
Setting template with empty string make error and cause recursion loading ; i solved it by just add the link of empty html file.
return app.config(['$routeProvider', function ($routeProvider) { $routeProvider .when("/", { template: "dummy.htm", controller: "controller1" })