summaryrefslogtreecommitdiffstats
path: root/coffee/lib/owncloud.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'coffee/lib/owncloud.coffee')
-rw-r--r--coffee/lib/owncloud.coffee4
1 files changed, 2 insertions, 2 deletions
diff --git a/coffee/lib/owncloud.coffee b/coffee/lib/owncloud.coffee
index 537499135..aaed235a3 100644
--- a/coffee/lib/owncloud.coffee
+++ b/coffee/lib/owncloud.coffee
@@ -34,11 +34,11 @@ angular.module('OC', []).config ['$httpProvider', ($httpProvider) ->
return $.param(data)
]
-angular.module('OC').init ['$rootScope', 'Router', ($rootScope, Router) ->
+angular.module('OC').run ['$rootScope', 'Router', ($rootScope, Router) ->
init = ->
$rootScope.$broadcast('routesLoaded')
# this registers a callback that is executed once the routes have
# finished loading. Before this you cant really do request
- OC.Router.registerLoadedCallback(init)
+ Router.registerLoadedCallback(init)
] \ No newline at end of file