Merge pull request #1425 from michelsalib/patch-4

[Angular-ui-router] onExit/onEnter can be inline injected functions
This commit is contained in:
Masahiro Wakame
2013-12-12 17:48:12 -08:00
+2 -2
View File
@@ -19,8 +19,8 @@ declare module ng.ui {
params?: any[];
views?: {};
abstract?: boolean;
onEnter?: Function;
onExit?: Function;
onEnter?: any;
onExit?: any;
data?: any;
}