You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
`{jQuery/jqLite element}` is not a valid jsdoc type and breaks when being
parsed causing the documentation to look wrong. This commit changes all
such param tags to use `DOMElement` instead, which is what is used for
similar params in `$compile` and `angular.element`.
* | 9. The animation ends and all generated CSS classes are removed from the element | class="my-animation" |
410
410
* | 10. The doneCallback() callback is fired (if provided) | class="my-animation" |
411
411
*
412
-
* @param {jQuery/jqLite element} element the element that will be the focus of the enter animation
413
-
* @param {jQuery/jqLite element} parentElement the parent element of the element that will be the focus of the enter animation
414
-
* @param {jQuery/jqLite element} afterElement the sibling element (which is the previous element) of the element that will be the focus of the enter animation
412
+
* @param {DOMElement} element the element that will be the focus of the enter animation
413
+
* @param {DOMElement} parentElement the parent element of the element that will be the focus of the enter animation
414
+
* @param {DOMElement} afterElement the sibling element (which is the previous element) of the element that will be the focus of the enter animation
415
415
* @param {function()=} doneCallback the callback function that will be called once the animation is complete
416
416
*/
417
417
enter : function(element,parentElement,afterElement,doneCallback){
* | 9. The animation ends and all generated CSS classes are removed from the element | class="my-animation" |
487
487
* | 10. The doneCallback() callback is fired (if provided) | class="my-animation" |
488
488
*
489
-
* @param {jQuery/jqLite element} element the element that will be the focus of the move animation
490
-
* @param {jQuery/jqLite element} parentElement the parentElement element of the element that will be the focus of the move animation
491
-
* @param {jQuery/jqLite element} afterElement the sibling element (which is the previous element) of the element that will be the focus of the move animation
489
+
* @param {DOMElement} element the element that will be the focus of the move animation
490
+
* @param {DOMElement} parentElement the parentElement element of the element that will be the focus of the move animation
491
+
* @param {DOMElement} afterElement the sibling element (which is the previous element) of the element that will be the focus of the move animation
492
492
* @param {function()=} doneCallback the callback function that will be called once the animation is complete
0 commit comments