Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

docs(route): add hint for ngRoute module inclusion #3583

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion src/ngRoute/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@
* @name ngRoute
* @description
*
* Module that provides routing and deeplinking services and directives for angular apps.
* ngRoute
* =========
*
* The ngRoute module provides routing and deeplinking services and directives for angular apps.
*
* To make use of routing with AngularJS, the `angular-route.js` JavaScript file must be included into your application
* and the `ngRoute` module must be included as a dependency.
*
* <pre>
* angular.module('App', ['ngRoute']);
* </pre>
*
*/

var ngRouteModule = angular.module('ngRoute', ['ng']).
Expand Down