Skip to content

Instantly share code, notes, and snippets.

@jkosoy
Created March 9, 2016 20:12
Show Gist options
  • Select an option

  • Save jkosoy/6650a2bd356d223f093d to your computer and use it in GitHub Desktop.

Select an option

Save jkosoy/6650a2bd356d223f093d to your computer and use it in GitHub Desktop.

Revisions

  1. jkosoy created this gist Mar 9, 2016.
    33 changes: 33 additions & 0 deletions pseudo.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,33 @@
    animateFareTextIn(function() {
    animateWeatherTextIn(function() {
    animateDividerIn(function() {
    animateLoadingSentence1In(function() {
    animateLoadingSenetence2In(function() {
    // all done!
    })
    }
    }
    })
    })


    // vs

    firstly(function() {
    animateFareTextIn()
    })
    .then(function() {
    animateWeatherTextIn()
    })
    .then(function() {
    animateDividerIn()
    })
    .then(function() {
    animateLoadingSentence1In()
    })
    .then(function() {
    animateLoadingSentence2In()
    })
    .then(function() {
    // all done!
    })