Created
May 14, 2013 19:19
-
-
Save zivester/5578675 to your computer and use it in GitHub Desktop.
[].join()
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
| $('body').append([ | |
| "<div class='loading-screen' style='z-index:1005'>", | |
| "<div class='loading-container'>", | |
| "<div class='text'>Loading " + item.name + " (" + item.id + ")", | |
| "<div class='progress progress-striped active' style='width: 100%'>", | |
| <div class='bar' style='width: 100%;'></div>", | |
| "</div>", | |
| "</div>", | |
| "</div>", | |
| "</div>" | |
| ].join('')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The quotes on this html are backwards. Each line should be single quoted, attributes should be double quoted.