Skip to content

Commit fe62305

Browse files
committed
fix docs
1 parent acce1dd commit fe62305

File tree

4 files changed

+3
-86
lines changed

4 files changed

+3
-86
lines changed

docs/source/_static/js/load-widget-example.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
const IDOM_CLIENT_REACT_PATH = "/client/_snowpack/pkg/idom-client-react.js";
2+
13
export default function loadWidgetExample(
24
idomServerHost,
35
idomServerPath,
@@ -16,7 +18,7 @@ export default function loadWidgetExample(
1618

1719
enableWidgetButton.addEventListener("click", () => {
1820
{
19-
import(http_proto + idom_url + "/client/src/index.js").then((module) => {
21+
import(http_proto + idom_url + IDOM_CLIENT_REACT_PATH).then((module) => {
2022
{
2123
fadeOutAndThen(enableWidgetButton, () => {
2224
{

docs/source/auto/api-reference.rst

Lines changed: 0 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,2 @@
11
API Reference
22
=============
3-
4-
.. automodule:: idom.client.manage
5-
:members:
6-
7-
.. automodule:: idom.client.module
8-
:members:
9-
10-
.. automodule:: idom.config
11-
:members:
12-
13-
.. automodule:: idom.core.component
14-
:members:
15-
16-
.. automodule:: idom.core.dispatcher
17-
:members:
18-
19-
.. automodule:: idom.core.events
20-
:members:
21-
22-
.. automodule:: idom.core.hooks
23-
:members:
24-
25-
.. automodule:: idom.core.layout
26-
:members:
27-
28-
.. automodule:: idom.core.vdom
29-
:members:
30-
31-
.. automodule:: idom.dialect
32-
:members:
33-
34-
.. automodule:: idom.log
35-
:members:
36-
37-
.. automodule:: idom.server.fastapi
38-
:members:
39-
40-
.. automodule:: idom.server.flask
41-
:members:
42-
43-
.. automodule:: idom.server.prefab
44-
:members:
45-
46-
.. automodule:: idom.server.sanic
47-
:members:
48-
49-
.. automodule:: idom.server.tornado
50-
:members:
51-
52-
.. automodule:: idom.testing
53-
:members:
54-
55-
.. automodule:: idom.utils
56-
:members:
57-
58-
.. automodule:: idom.widgets.html
59-
:members:
60-
61-
.. automodule:: idom.widgets.utils
62-
:members:
63-
64-
Misc Modules
65-
------------
66-
67-
.. automodule:: idom.cli
68-
:members:
69-
70-
.. automodule:: idom.core.utils
71-
:members:
72-
73-
.. automodule:: idom.server.base
74-
:members:
75-
76-
.. automodule:: idom.server.utils
77-
:members:

docs/source/auto/developer-apis.rst

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,2 @@
11
Developer APIs
22
==============
3-
4-
.. automodule:: idom._option
5-
:members:
6-
7-
Misc Dev Modules
8-
----------------
9-
10-
.. automodule:: idom.client._private
11-
:members:

scripts/live_docs.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ def wrap_builder(old_builder):
2626
# This is the bit that we're injecting to get the example components to reload too
2727
def new_builder():
2828
[s.stop() for s in _running_idom_servers]
29-
[s.wait_until_stopped() for s in _running_idom_servers]
3029

3130
# we need to set this before `docs.main` does
3231
IDOM_CLIENT_IMPORT_SOURCE_URL.current = (

0 commit comments

Comments
 (0)