-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prevent multiple JS instance creation where necessary
- Loading branch information
Showing
10 changed files
with
36 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
import * as batcheditems from './batcheditems.js'; | ||
import * as colormode from './colormode.js'; | ||
import * as copysupport from './copysupport.js'; | ||
import * as keybinder from './keybinder.js'; | ||
import * as livesearch from './livesearch.js'; | ||
import * as personaltools from './personaltools.js'; | ||
import * as referencebrowser from './referencebrowser.js'; | ||
import * as selectable from './selectable.js'; | ||
import * as settingstabs from './settingstabs.js'; | ||
import * as sharing from './sharing.js'; | ||
import * as sidebar from './sidebar.js'; | ||
import * as tabletoolbar from './tabletoolbar.js'; | ||
import * as utils from './utils.js'; | ||
import * as colormode from './colormode.js'; | ||
import * as sidebar from './sidebar.js'; | ||
import * as personaltools from './personaltools.js'; | ||
|
||
let api = {}; | ||
|
||
Object.assign(api, batcheditems); | ||
Object.assign(api, colormode); | ||
Object.assign(api, copysupport); | ||
Object.assign(api, keybinder); | ||
Object.assign(api, livesearch); | ||
Object.assign(api, personaltools); | ||
Object.assign(api, referencebrowser); | ||
Object.assign(api, selectable); | ||
Object.assign(api, settingstabs); | ||
Object.assign(api, sharing); | ||
Object.assign(api, sidebar); | ||
Object.assign(api, tabletoolbar); | ||
Object.assign(api, utils); | ||
Object.assign(api, colormode); | ||
Object.assign(api, sidebar); | ||
Object.assign(api, personaltools); | ||
|
||
let cone = api; | ||
export default cone; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.