Skip to content

Commit

Permalink
Website updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaub committed Dec 30, 2024
1 parent 732e6ab commit 522cafe
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/en/main/apidoc/module-ol_Tile-Tile.html
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ <h4 class="name">

<div class="tag-source">
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/Tile.js">Tile.js</a>,
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/Tile.js#L189">line 189</a>
<a href="https://github.com/openlayers/openlayers/blob/main/src/ol/Tile.js#L193">line 193</a>
</div>

</div>
Expand Down
2 changes: 1 addition & 1 deletion dist/en/main/examples/common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/en/main/examples/common.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/en/main/examples/offscreen-canvas.worker.worker.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/en/main/ol/Tile.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions dist/en/main/ol/Tile.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,10 @@ class Tile extends EventTarget {
* @api
*/
setState(state) {
if (this.state === TileState.EMPTY) {
// no more state changes
return;
}
if (this.state !== TileState.ERROR && this.state > state) {
throw new Error('Tile load sequence violation');
}
Expand Down
2 changes: 1 addition & 1 deletion dist/en/main/ol/dist/ol.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/en/main/ol/dist/ol.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/main.js

Large diffs are not rendered by default.

0 comments on commit 522cafe

Please sign in to comment.