mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
f24a82e8d4
Summary: - Remove modules related to old login / profile that we don't plan to bring back. - Remove old unused DocListModel. - Remove ext* tests that have been skipped and don't work. - Remove old ModalDialog, and switch its one remaining usage to the newer way. Test Plan: All tests should pass, and as many as before. Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D2668
13 lines
381 B
JavaScript
13 lines
381 B
JavaScript
/* global window */
|
|
|
|
// These modules are exposed for the sake of browser tests.
|
|
Object.assign(window.exposedModules, {
|
|
dom: require('./lib/dom'),
|
|
grainjs: require('grainjs'),
|
|
ko: require('knockout'),
|
|
moment: require('moment-timezone'),
|
|
Comm: require('./components/Comm'),
|
|
_loadScript: require('./lib/loadScript'),
|
|
ConnectState: require('./models/ConnectState'),
|
|
});
|