Skip to content

Commit 57e6371

Browse files
committed
Workaround require.js for now by setting amd to false
1 parent 61215a5 commit 57e6371

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

js/src/output.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const shinyRequireLoader = async function(moduleName: string, moduleVersion: str
3737
const oldAmd = (window as any).define.amd;
3838

3939
// The is the original value for define.amd that require.js sets
40-
(window as any).define.amd = {jQuery: true};
40+
(window as any).define.amd = false;
4141

4242
// Store jQuery global since loading we load a module, it may overwrite it
4343
// (qgrid is one good example)

0 commit comments

Comments
 (0)