Created
April 24, 2020 10:36
-
-
Save ilikerobots/1eb6303863bbaba449b0e33026454091 to your computer and use it in GitHub Desktop.
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
| <div> | |
| <input id="button_loader" type="button" value="Load stopwatch"> | |
| </div> | |
| <div id="stopwatch"> | |
| <stopwatch></stopwatch> | |
| </div> | |
| <script> | |
| let stopwatchBtn = document.getElementById('button_loader'); | |
| stopwatchBtn.addEventListener('click', function (e) { | |
| stopwatchBtn.style.visibility = "hidden"; | |
| {% lazy_render_bundle 'stopwatch' %} | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment