We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a88ff9a commit de38301Copy full SHA for de38301
src/core/Docsify.js
@@ -6,7 +6,6 @@ import { routerMixin } from './router';
6
import { renderMixin } from './render';
7
import { fetchMixin } from './fetch';
8
import { eventMixin } from './event';
9
-import initGlobalAPI from './global-api';
10
11
export class Docsify extends multiple(
12
initMixin,
@@ -17,8 +16,3 @@ export class Docsify extends multiple(
17
16
fetchMixin,
18
eventMixin
19
) {}
20
-
21
-/**
22
- * Global API
23
- */
24
-initGlobalAPI();
src/core/index.js
@@ -1,5 +1,8 @@
1
import { documentReady } from './util/dom';
2
import { Docsify } from './Docsify';
3
+import initGlobalAPI from './global-api';
4
+
5
+initGlobalAPI();
/**
* Run Docsify
0 commit comments