Skip to content

Commit 08a5f58

Browse files
committed
Release 0.2.10
1 parent 3f8801b commit 08a5f58

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/source/_examples/anymesh.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<body>
88
<div id="viewer" style="position: relative; width: 100%; height: 600px"></div>
99
<script type="module">
10-
import { WEAS, Atoms } from "https://unpkg.com/weas@0.2.9/dist/index.mjs";
10+
import { WEAS, Atoms } from "https://unpkg.com/weas@0.2.10/dist/index.mjs";
1111
let domElement = document.getElementById("viewer");
1212
let data = [
1313
{

docs/source/_examples/mesh_primitive.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<body>
88
<div id="viewer" style="position: relative; width: 100%; height: 600px"></div>
99
<script type="module">
10-
import { WEAS, Atoms } from "https://unpkg.com/weas@0.2.9/dist/index.mjs";
10+
import { WEAS, Atoms } from "https://unpkg.com/weas@0.2.10/dist/index.mjs";
1111
let domElement = document.getElementById("viewer");
1212
let data = [
1313
{

docs/source/_examples/quickstart.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<body>
88
<div id="viewer" style="position: relative; width: 100%; height: 600px"></div>
99
<script type="module">
10-
import { WEAS, Atoms } from "https://unpkg.com/weas@0.2.9/dist/index.mjs";
10+
import { WEAS, Atoms } from "https://unpkg.com/weas@0.2.10/dist/index.mjs";
1111
const domElement = document.getElementById("viewer");
1212
// create atoms object for H2O
1313
const atoms = new Atoms({

docs/source/_examples/text_labels.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<body>
88
<div id="viewer" style="position: relative; width: 100%; height: 600px"></div>
99
<script type="module">
10-
import { WEAS, Atoms } from "https://unpkg.com/weas@0.2.9/dist/index.mjs";
10+
import { WEAS, Atoms } from "https://unpkg.com/weas@0.2.10/dist/index.mjs";
1111

1212
const domElement = document.getElementById("viewer");
1313
const atoms = new Atoms({

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "weas",
3-
"version": "0.2.9",
3+
"version": "0.2.10",
44
"description": "WEAS (Web Environment for Atomic Structures) is a JavaScript library to visualize and manipulate atomistic structures in the browser",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.mjs",

src/io/structure.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function buildExportPayload(weas, format) {
135135
<body>
136136
<div id="viewer" style="position: relative; width: 100%; height: 800px"></div>
137137
<script type="module">
138-
import { WEAS } from "https://unpkg.com/weas@0.2.9/dist/index.mjs";
138+
import { WEAS } from "https://unpkg.com/weas@0.2.10/dist/index.mjs";
139139
const domElement = document.getElementById("viewer");
140140
const editor = new WEAS({ domElement });
141141
const snapshot = ${safeJson};

0 commit comments

Comments
 (0)