Skip to content

Instantly share code, notes, and snippets.

@spreadred
Created August 15, 2017 19:17
Show Gist options
  • Save spreadred/c9547a83f46993217ce10e7651384bcd to your computer and use it in GitHub Desktop.
Save spreadred/c9547a83f46993217ce10e7651384bcd to your computer and use it in GitHub Desktop.
Fix for jquery plugins complaining about Uncaught ReferenceError: jQuery is not defined for Electron apps
<!-- Insert this line above script imports -->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<!-- normal script imports etc -->
<script src="scripts/jquery.min.js"></script>
<script src="scripts/vendor.js"></script>
<!-- Insert this line after script imports -->
<script>if (window.module) module = window.module;</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment