Skip to content

Commit 15eaaf2

Browse files
committed
docs(ui.router.compat): adds docs for ui.router.compat module
1 parent b4d8775 commit 15eaaf2

File tree

1 file changed

+47
-1
lines changed

1 file changed

+47
-1
lines changed

src/common.js

+47-1
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,55 @@ function filterByKeys(keys, values) {
164164
return filtered;
165165
}
166166

167+
/**
168+
* @ngdoc overview
169+
* @name ui.router.util
170+
*
171+
* @description
172+
*
173+
*/
167174
angular.module('ui.router.util', ['ng']);
175+
176+
/**
177+
* @ngdoc overview
178+
* @name ui.router.router
179+
*
180+
* @requires ui.router.util
181+
*
182+
* @description
183+
*
184+
*/
168185
angular.module('ui.router.router', ['ui.router.util']);
186+
187+
/**
188+
* @ngdoc overview
189+
* @name ui.router.router
190+
*
191+
* @requires ui.router.router
192+
* @requires ui.router.util
193+
*
194+
* @description
195+
*
196+
*/
169197
angular.module('ui.router.state', ['ui.router.router', 'ui.router.util']);
198+
199+
/**
200+
* @ngdoc overview
201+
* @name ui.router
202+
*
203+
* @requires ui.router.state
204+
*
205+
* @description
206+
*
207+
*/
170208
angular.module('ui.router', ['ui.router.state']);
209+
/**
210+
* @ngdoc overview
211+
* @name ui.router.compat
212+
*
213+
* @requires ui.router
214+
*
215+
* @description
216+
*
217+
*/
171218
angular.module('ui.router.compat', ['ui.router']);
172-

0 commit comments

Comments
 (0)