Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion files/en-us/web/api/idbkeyrange/bound/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ used `IDBKeyRange.bound("A", "F", true, true);`, then the range would not
include `"A"` and `"F"`, only the values between them.

> **Note:** For a more complete example allowing you to experiment with
> key range, have a look at the idbkeyrange directory in the [indexeddb-examples](https://github.com/mdn/dom-examples/indexeddb-examples/tree/master/idbkeyrange) repo. (View the example [live](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/) too.
> key range, have a look at the idbkeyrange directory in the [indexeddb-examples](https://github.com/mdn/dom-examples/tree/master/indexeddb-examples/idbkeyrange) repo. (View the example [live](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/) too.

```js
function displayData() {
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/idbkeyrange/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ A key is in a key range if the following conditions are true:
The following example illustrates how you'd use a key range. Here we declare a `keyRangeValue` as a range between values of `"A"` and `"F"`. We open a transaction (using {{domxref("IDBTransaction")}}) and an object store, and open a cursor with {{domxref("IDBObjectStore.openCursor")}}, declaring `keyRangeValue` as its optional key range value. This means that the cursor will only retrieve records with keys inside that range. This range includes the values `"A"` and `"F"`, as we haven't declared that they should be open bounds.
If we used `IDBKeyRange.bound("A", "F", true, true);`, then the range would not include `"A"` and `"F"`, only the values between them.

> **Note:** For a more complete example allowing you to experiment with key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/indexeddb-examples/tree/master/idbkeyrange) repo ([view the example live too](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/).)
> **Note:** For a more complete example allowing you to experiment with key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/tree/master/indexeddb-examples/idbkeyrange) repo ([view the example live too](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/).)

```js
function displayData() {
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/idbkeyrange/lower/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ After declaring the key range, we log its `lower` property value to the
console, which should appear as "F".

> **Note:** For a more complete example allowing you to experiment with
> key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/indexeddb-examples/tree/master/idbkeyrange) repo.
> key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/tree/master/indexeddb-examples/idbkeyrange) repo.
> (View the example [live](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/) too.

```js
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/idbkeyrange/lowerbound/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ the key value "F" and all that come after it. If we used
only the values after it.

> **Note:** For a more complete example allowing you to experiment with
> key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/indexeddb-examples/tree/master/idbkeyrange) repo
> key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/tree/master/indexeddb-examples/idbkeyrange) repo
> ([view the example live too](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/).)

```js
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/idbkeyrange/only/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ declaring `keyRangeValue` as its optional key range value. This means that
the cursor will only retrieve the record with the key value "A".

> **Note:** For a more complete example allowing you to experiment with
> key range, have a look at our [IDBKeyRange](https://github.com/mdn/dom-examples/indexeddb-examples/tree/master/idbkeyrange)
> key range, have a look at our [IDBKeyRange](https://github.com/mdn/dom-examples/tree/master/indexeddb-examples/idbkeyrange)
> repo ([view the example live too](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/).)

```js
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/idbkeyrange/upper/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ After declaring the key range, we log its `upper` property value to the
console, which should appear as "W".

> **Note:** For a more complete example allowing you to experiment with
> key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/indexeddb-examples/tree/master/idbkeyrange) repo
> key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/tree/master/indexeddb-examples/idbkeyrange) repo
> ([view the example live too](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/).)

```js
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/idbkeyrange/upperbound/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ If we used `IDBKeyRange.upperBound("F", true);`, then the range excludes
"F"; and instead only includes the values before it.

> **Note:** For a more complete example allowing you to experiment with
> key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/indexeddb-examples/tree/master/idbkeyrange) repo
> key range, have a look at our [IDBKeyRange-example](https://github.com/mdn/dom-examples/tree/master/indexeddb-examples/idbkeyrange) repo
> ([view the example live too](https://mdn.github.io/dom-examples/indexeddb-examples/idbkeyrange/).)

```js
Expand Down