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: README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
The Observable standard library.
6
6
7
-
For examples, see https://beta.observablehq.com/@mbostock/standard-library.
7
+
For examples, see https://observablehq.com/@observablehq/standard-library.
8
8
9
9
## API Reference
10
10
@@ -217,7 +217,7 @@ In general, you probably want to use the [html](#html) tagged template literal i
217
217
218
218
Returns a new unique *identifier*. If *name* is specified, the *identifier*.id will be derived from the specified *name*, which may be useful for debugging. If DOM.uid is called repeatedly with the same *name*, every returned *identifier* is still unique (that is, different). Identifiers are useful in SVG: use *identifier*.href for IRI references, such as the [xlink:href](https://www.w3.org/TR/SVG/animate.html#HrefAttribute) attribute; use *identifier*.toString for functional notation, such as the [clip-path](https://www.w3.org/TR/SVG/masking.html#ClipPathProperty) presentation attribute.
219
219
220
-
For example, to [clip the Mona Lisa](https://beta.observablehq.com/@mbostock/svg-clipping-test) to a circle of radius 320px:
220
+
For example, to [clip the Mona Lisa](https://observablehq.com/@mbostock/svg-clipping-test) to a circle of radius 320px:
221
221
222
222
```js
223
223
{
@@ -242,7 +242,7 @@ The use of DOM.uid is strongly recommended over hand-coding as it ensures that y
242
242
243
243
### Files
244
244
245
-
See [Reading Local Files](https://beta.observablehq.com/@mbostock/reading-local-files) for examples.
245
+
See [Reading Local Files](https://observablehq.com/@mbostock/reading-local-files) for examples.
@@ -318,7 +318,7 @@ The resolved value is likewise dependent on the *input*.type as follows:
318
318
319
319
The specified *input* need not be an HTMLInputElement, but it must support the *target*.addEventListener and *target*.removeEventListener methods of the [EventTarget interface](https://developer.mozilla.org/docs/Web/API/EventTarget/addEventListener).
320
320
321
-
Generators.input is used by Observable’s [viewof operator](https://beta.observablehq.com/@mbostock/a-brief-introduction-to-viewof) to define the current value of a view, and is based on [Generators.observe](#Generators_observe). One often does not use Generators.input directly, but it can be used to define a [generator cell](https://beta.observablehq.com/@mbostock/generator-cells-functions-and-objects) exposing the current value of an input, and you can also read the yielded values by hand. For example, to accumulate the first four values:
321
+
Generators.input is used by Observable’s [viewof operator](https://observablehq.com/@observablehq/a-brief-introduction-to-viewof) to define the current value of a view, and is based on [Generators.observe](#Generators_observe). One often does not use Generators.input directly, but it can be used to define a [generator cell](https://observablehq.com/@mbostock/generator-cells-functions-and-objects) exposing the current value of an input, and you can also read the yielded values by hand. For example, to accumulate the first four values:
Generators.observe is typically used to define a [generator cell](https://beta.observablehq.com/@mbostock/generator-cells-functions-and-objects), but you can also read the yielded values by hand. For example, to accumulate the first four values:
373
+
Generators.observe is typically used to define a [generator cell](https://observablehq.com/@mbostock/generator-cells-functions-and-objects), but you can also read the yielded values by hand. For example, to accumulate the first four values:
374
374
375
375
```js
376
376
{
@@ -411,7 +411,7 @@ Generators.queue(change => {
411
411
412
412
(See also [Generators.input](#Generators_input).)
413
413
414
-
Generators.queue is typically used to define a [generator cell](https://beta.observablehq.com/@mbostock/generator-cells-functions-and-objects), but you can also read the yielded values by hand. For example, to accumulate the first four values:
414
+
Generators.queue is typically used to define a [generator cell](https://observablehq.com/@mbostock/generator-cells-functions-and-objects), but you can also read the yielded values by hand. For example, to accumulate the first four values:
0 commit comments