Last active
August 29, 2015 14:08
-
-
Save KamilLelonek/7b6d768ba18763aceabf to your computer and use it in GitHub Desktop.
Dynamic shared assets depending on environment
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
<script> | |
document.write( | |
'<script src="' + env.ASSETS_HOST + '/javascripts/shared/shared.js">\x3C/script>' | |
); | |
document.write( | |
'<link rel="stylesheet" href="' + env.ASSETS_HOST + '/stylesheets/shared.css" />' | |
); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment