From 027f20be1fe426e39a0404e74b17bc654273391c Mon Sep 17 00:00:00 2001 From: Ewen Cumming Date: Tue, 12 Feb 2013 11:56:59 +1300 Subject: docs($rootScope): rearrange event listener docs --- src/ng/rootScope.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/ng/rootScope.js') diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index 866b957e..5981b7e7 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -627,10 +627,6 @@ function $RootScopeProvider(){ * Listens on events of a given type. See {@link ng.$rootScope.Scope#$emit $emit} for discussion of * event life cycle. * - * @param {string} name Event name to listen on. - * @param {function(event, args...)} listener Function to call when the event is emitted. - * @returns {function()} Returns a deregistration function for this listener. - * * The event listener function format is: `function(event, args...)`. The `event` object * passed into the listener has the following attributes: * @@ -641,6 +637,10 @@ function $RootScopeProvider(){ * propagation (available only for events that were `$emit`-ed). * - `preventDefault` - `{function}`: calling `preventDefault` sets `defaultPrevented` flag to true. * - `defaultPrevented` - `{boolean}`: true if `preventDefault` was called. + * + * @param {string} name Event name to listen on. + * @param {function(event, args...)} listener Function to call when the event is emitted. + * @returns {function()} Returns a deregistration function for this listener. */ $on: function(name, listener) { var namedListeners = this.$$listeners[name]; -- cgit v1.2.3