Created
January 10, 2018 12:34
-
-
Save metaskills/a967cdfa6aa99dd4d77c149f2ed9e2ce to your computer and use it in GitHub Desktop.
When Are Things Ready?
This file contains hidden or 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
document.addEventListener('DOMContentLoaded', function(){ | |
console.log('DOMContentLoaded'); | |
}); | |
document.addEventListener('turbolinks:load', function(){ | |
console.log('turbolinks:load'); | |
}); | |
jQuery(function(){ | |
console.log('jQuery Document Ready'); | |
}); | |
// DOMContentLoaded | |
// turbolinks:load | |
// jQuery Document Ready |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment