Skip to content

Instantly share code, notes, and snippets.

@cuth
Last active August 29, 2015 14:01
Show Gist options
  • Save cuth/d60cc4558f2a27ae040e to your computer and use it in GitHub Desktop.
Save cuth/d60cc4558f2a27ae040e to your computer and use it in GitHub Desktop.
Hack to load modules in a half AMD half browser global environment.
<script>
if (typeof define === 'function' && define.amd) {
window.noConflictAMD = define.amd;
define.amd = null;
}
</script>
<script src="/module.js"></script>
<script>
if (typeof define === 'function') {
define.amd = window.noConflictAMD;
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment