You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/examples/Widget Custom.ipynb
+9-7Lines changed: 9 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -24,12 +24,6 @@
24
24
"cell_type": "markdown",
25
25
"metadata": {},
26
26
"source": [
27
-
"The widget framework is built on top of the Comm framework (short for communication). The Comm framework is a framework that allows the kernel to send/receive JSON messages to/from the front end (as seen below).\n",
28
-
"\n",
29
-
"\n",
30
-
"\n",
31
-
"To create a custom widget, you need to define the widget both in the browser and in the Python kernel.\n",
32
-
"\n",
33
27
"This tutorial shows how to build a simple email widget using the TypeScript widget cookiecutter: https://github.com/jupyter-widgets/widget-ts-cookiecutter"
34
28
]
35
29
},
@@ -172,7 +166,15 @@
172
166
}
173
167
},
174
168
"source": [
175
-
"## Implementing the widget"
169
+
"## Implementing the widget\n",
170
+
"\n",
171
+
"The widget framework is built on top of the Comm framework (short for communication). The Comm framework is a framework that allows the kernel to send/receive JSON messages to/from the front end (as seen below).\n",
172
+
"\n",
173
+
"\n",
174
+
"\n",
175
+
"To learn more about how the underlying Widget protocol works, check out the [Low Level Widget](Widget%20Low%20Level.ipynb) documentation.\n",
176
+
"\n",
177
+
"To create a custom widget, you need to define the widget both in the browser and in the Python kernel.\n"
0 commit comments