Created
August 15, 2017 19:17
-
-
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
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
<!-- 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