Last active
June 3, 2017 09:30
Revisions
-
sdgluck renamed this gist
Jan 12, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
sdgluck renamed this gist
Jan 12, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
sdgluck renamed this gist
Jan 12, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
sdgluck revised this gist
Jan 12, 2015 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,5 @@ /** * Invoke a CSS animation on `this` angular.element instance. * @param className classname of animation to invoke on `this` element * @param delay delay before animation is invoked * @param done callback -
sdgluck revised this gist
Jan 12, 2015 . No changes.There are no files selected for viewing
-
sdgluck created this gist
Jan 12, 2015 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ /** * Invoke a CSS animation on `this` angular.element instance. Wait for the animation to complete and then * remove the class from the element so it can be repeated in the future by calling this function again. * @param className classname of animation to invoke on `this` element * @param delay delay before animation is invoked * @param done callback */ angular.element.prototype.doAnim = function(className, delay, done, doneDelay) { done = (typeof delay === 'function') ? delay : done; $timeout(function() { this.removeClass(className); $timeout(function() { this.addClass(className); $timeout(done, doneDelay || 0); }.bind(this), 100); }.bind(this), delay || 0); };