Created
August 8, 2016 18:59
-
-
Save harentius/04ea3219c93b820568a6621c55b7a313 to your computer and use it in GitHub Desktop.
renderTransition
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 characters
renderTransition: (text, showingTime = 1500) -> | |
deferred = new Deferred() | |
setTimeout(() -> | |
deferred.resolve() | |
# displaying code | |
, showingTime) | |
return deferred |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment