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 Events.ipynb
+1-1
Original file line number
Diff line number
Diff line change
@@ -316,7 +316,7 @@
316
316
"\n",
317
317
"Linking in the kernel means linking via python. If two sliders are linked in the kernel, when one slider is changed the browser sends a message to the kernel (python in this case) updating the changed slider, the link widget in the kernel then propagates the change to the other slider object in the kernel, and then the other slider's kernel object sends a message to the browser to update the other slider's views in the browser. If the kernel is not running (as in a static web page), then the controls will not be linked.\n",
318
318
"\n",
319
-
"Linking using jslink (i.e., on the browser side) means contructing the link in Javascript. When one slider is changed, Javascript running in the browser changes the value of the other slider in the browser, without needing to communicate with the kernel at all. If the sliders are attached to kernel objects, each slider will update their kernel-side objects independently.\n",
319
+
"Linking using jslink (i.e., on the browser side) means constructing the link in Javascript. When one slider is changed, Javascript running in the browser changes the value of the other slider in the browser, without needing to communicate with the kernel at all. If the sliders are attached to kernel objects, each slider will update their kernel-side objects independently.\n",
320
320
"\n",
321
321
"To see the difference between the two, go to the [static version of this page in the ipywidgets documentation](http://ipywidgets.readthedocs.io/en/latest/examples/Widget%20Events.html) and try out the sliders near the bottom. The ones linked in the kernel with `link` and `dlink` are no longer linked, but the ones linked in the browser with `jslink` and `jsdlink` are still linked."
Copy file name to clipboardExpand all lines: docs/source/examples/Widget Styling.ipynb
+3-3
Original file line number
Diff line number
Diff line change
@@ -1057,7 +1057,7 @@
1057
1057
"\n",
1058
1058
"Use `Image.layout.object_position` to control how where an image is positioned within a container like a box. The default value ensures that the image is centered in the box. The effect of `Image.layout.object_position` depends, in some cases, on the value of `Image.layout.object_fit`.\n",
1059
1059
"\n",
1060
-
"There are severl ways to specify the value for `object_position`, described below."
1060
+
"There are several ways to specify the value for `object_position`, described below."
1061
1061
]
1062
1062
},
1063
1063
{
@@ -1263,7 +1263,7 @@
1263
1263
"+ A mix of pixel and percent offsets.\n",
1264
1264
"+ A mix of keywords and offsets.\n",
1265
1265
"\n",
1266
-
"Image scaling as determined by `object_fit` will take precendence over the positioning in some cases. For example, if `object_fit` is `fill`, so that the image is supposed to fill the container without preserving the aspect ratio, then `object_position` will have no effect because there is effectively no positioning to do. \n",
1266
+
"Image scaling as determined by `object_fit` will take precedence over the positioning in some cases. For example, if `object_fit` is `fill`, so that the image is supposed to fill the container without preserving the aspect ratio, then `object_position` will have no effect because there is effectively no positioning to do. \n",
1267
1267
"\n",
1268
1268
"Another way to think about it is this: `object_position` specifies how the *white space* around an image should be distributed in a container if there is white space in a particular direction. "
1269
1269
]
@@ -1279,7 +1279,7 @@
1279
1279
"+ The horizontal position must be one of: \n",
1280
1280
" * `'left'`: the left side of the image should be aligned with the left side of the container\n",
1281
1281
" * `'center'`: the image should be centered horizontally in the container.\n",
1282
-
" * `'right'`: the right side of the image should be aligned with the rigth side of the container.\n",
1282
+
" * `'right'`: the right side of the image should be aligned with the right side of the container.\n",
1283
1283
"+ The vertical position must be one of\n",
1284
1284
" * `'top'`: the top of the image should be aligned with the top of the container.\n",
1285
1285
" * '`center`': the image should be centered vertically in the container. \n",
`bar_style` | string (one of `'success'`, `'info'`, `'warning'`, `'danger'`, `''`) | `''` | Use a predefined styling for the progess bar.
407
+
`bar_style` | string (one of `'success'`, `'info'`, `'warning'`, `'danger'`, `''`) | `''` | Use a predefined styling for the progress bar.
408
408
`description` | string | `''` | Description of the control.
409
409
`disabled` | boolean | `false` | Enable or disable user changes
410
410
`layout` | reference to Layout widget | reference to new instance |
@@ -839,7 +839,7 @@ Attribute | Type | Default | Help
839
839
840
840
## Inheritance
841
841
842
-
In the list below, the notation `WidgetB(WidgetA)` indicates that WidgetB inherits all of the attributes from WidgetA. This may help in implementing widgets to easily see the inheritance hierarcy.
842
+
In the list below, the notation `WidgetB(WidgetA)` indicates that WidgetB inherits all of the attributes from WidgetA. This may help in implementing widgets to easily see the inheritance hierarchy.
0 commit comments