video-bubbles
Version:
<img src="images/bubbles-logo.svg" alt="Bubbles logo" width="50%" />
27 lines (21 loc) • 533 B
JavaScript
/*
Copyright 2019 Colin Clark
Licensed under the MIT license.
https://github.com/colinbdclark/bubbles/raw/master/LICENSE
*/
;
// TODO: Move to infusion-electron.
/**
* Namespaces Electron's nodeIntegration globals so that AMD-aware
* scripts such as jQuery don't get tripped up by their presence.
*/
window.electron = {
nodeIntegration: {
require: window.require,
define: window.define,
module: window.module
}
};
delete window.require;
delete window.define;
delete window.module;