diff options
Diffstat (limited to 'src/ng/animate.js')
| -rw-r--r-- | src/ng/animate.js | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/src/ng/animate.js b/src/ng/animate.js index d90f086b..785d1dfa 100644 --- a/src/ng/animate.js +++ b/src/ng/animate.js @@ -49,7 +49,7 @@ var $AnimateProvider = ['$provide', function($provide) {     * ```     *     * @param {string} name The name of the animation. -   * @param {function} factory The factory function that will be executed to return the animation +   * @param {Function} factory The factory function that will be executed to return the animation     *                           object.     */    this.register = function(name, factory) { @@ -118,7 +118,7 @@ var $AnimateProvider = ['$provide', function($provide) {         *   a child (if the after element is not present)         * @param {DOMElement} after the sibling element which will append the element         *   after itself -       * @param {function=} done callback function that will be called after the element has been +       * @param {Function=} done callback function that will be called after the element has been         *   inserted into the DOM         */        enter : function(element, parent, after, done) { @@ -141,7 +141,7 @@ var $AnimateProvider = ['$provide', function($provide) {         * @description Removes the element from the DOM. Once complete, the done() callback will be         *   fired (if provided).         * @param {DOMElement} element the element which will be removed from the DOM -       * @param {function=} done callback function that will be called after the element has been +       * @param {Function=} done callback function that will be called after the element has been         *   removed from the DOM         */        leave : function(element, done) { @@ -164,7 +164,7 @@ var $AnimateProvider = ['$provide', function($provide) {         *   inserted into (if the after element is not present)         * @param {DOMElement} after the sibling element where the element will be         *   positioned next to -       * @param {function=} done the callback function (if provided) that will be fired after the +       * @param {Function=} done the callback function (if provided) that will be fired after the         *   element has been moved to its new position         */        move : function(element, parent, after, done) { @@ -183,7 +183,7 @@ var $AnimateProvider = ['$provide', function($provide) {         * @param {DOMElement} element the element which will have the className value         *   added to it         * @param {string} className the CSS class which will be added to the element -       * @param {function=} done the callback function (if provided) that will be fired after the +       * @param {Function=} done the callback function (if provided) that will be fired after the         *   className value has been added to the element         */        addClass : function(element, className, done) { @@ -206,7 +206,7 @@ var $AnimateProvider = ['$provide', function($provide) {         * @param {DOMElement} element the element which will have the className value         *   removed from it         * @param {string} className the CSS class which will be removed from the element -       * @param {function=} done the callback function (if provided) that will be fired after the +       * @param {Function=} done the callback function (if provided) that will be fired after the         *   className value has been removed from the element         */        removeClass : function(element, className, done) { @@ -230,7 +230,7 @@ var $AnimateProvider = ['$provide', function($provide) {         *   removed from it         * @param {string} add the CSS classes which will be added to the element         * @param {string} remove the CSS class which will be removed from the element -       * @param {function=} done the callback function (if provided) that will be fired after the +       * @param {Function=} done the callback function (if provided) that will be fired after the         *   CSS classes have been set on the element         */        setClass : function(element, add, remove, done) { | 
