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: src/index.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ function translationLayer(div, object) {
9
9
constwarning=document.createElement('p');
10
10
11
11
warning.style.color='yellow';
12
-
warning.innerText=`The major version of mathics-threejs-backend is 1, but it was expected to be ${versionArray[0]}. Trying to draw the graphics.`;
12
+
warning.innerText=`The major revision version of mathics-threejs-backend is 1, but it was expected to be ${versionArray[0]}. Trying to draw the graphics.`;
13
13
14
14
div.appendChild(warning);
15
15
}elseif(parseInt(versionArray[1])<1){
@@ -19,7 +19,7 @@ function translationLayer(div, object) {
19
19
constwarning=document.createElement('p');
20
20
21
21
warning.style.color='yellow';
22
-
warning.innerText=`The minor version of mathics-threejs-backend is 0, but it was expected to be ${versionArray[1]}. Trying to draw the graphics.`;
22
+
warning.innerText=`The minor revision version of mathics-threejs-backend is 1, but it was expected to be ${versionArray[1]}. Trying to draw the graphics.`;
0 commit comments