mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-06 02:37:14 +00:00
fix: document is not defined by checking !$tw.browser
ReferenceError: document is not defined at $tw.utils.domMaker ($:/boot/boot.js:181:32) at ProsemirrorWidget.render ($:/plugins/tiddlywiki/prosemirror/widget.js:36:29)
This commit is contained in:
parent
de0c98978c
commit
2941bf6af3
15
plugins/tiddlywiki/prosemirror/widget-loader.js
Normal file
15
plugins/tiddlywiki/prosemirror/widget-loader.js
Normal file
@ -0,0 +1,15 @@
|
||||
/*\
|
||||
title: $:/plugins/tiddlywiki/prosemirror/widget-loader.js
|
||||
type: application/javascript
|
||||
module-type: widget
|
||||
|
||||
\*/
|
||||
|
||||
if (!$tw.browser) {
|
||||
return;
|
||||
}
|
||||
// separate the widget from the exports here, so we can skip the require of react code if `!$tw.browser`. Those ts code will error if loaded in the nodejs side.
|
||||
const components = require('$:/plugins/tiddlywiki/prosemirror/widget.js');
|
||||
const { prosemirror } = components;
|
||||
exports.prosemirror = prosemirror;
|
||||
exports['edit-prosemirror'] = prosemirror;
|
@ -1,9 +1,7 @@
|
||||
/*\
|
||||
title: $:/plugins/tiddlywiki/prosemirror/widget.js
|
||||
type: application/javascript
|
||||
module-type: widget
|
||||
|
||||
Text node widget
|
||||
module-type: library
|
||||
|
||||
\*/
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user