mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-22 09:36:49 +08:00
This work in progress PR moves shared edits into core and uses a yjs backend for it. This gives stuff such as multi cursor support etc.
7 lines
173 B
JavaScript
Vendored
7 lines
173 B
JavaScript
Vendored
/**
|
|
* YJS Wrapper for Discourse
|
|
* This file wraps the YJS module and exposes it as window.Y for use in Discourse plugins
|
|
*/
|
|
import * as Y from './yjs.js';
|
|
|
|
window.Y = Y;
|