Skip to content

Commit b11cb93

Browse files
committed
Correct typo in version string
1 parent 1919361 commit b11cb93

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/modules/editor.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ function showEditorAbout() {
384384

385385
// Populate the UI with application details
386386
const version = document.getElementById('about-solo-version');
387-
version.innerHTML = `BlocklyProp Solo v${getFullVersion()}, ` +
387+
version.innerHTML = `BlocklyProp Solo ${getFullVersion()}, ` +
388388
`Copyright © 2015, ${year}, Parallax Inc.`;
389389

390390
const launcher = document.getElementById('about-solo-launcher-version');
@@ -2161,7 +2161,6 @@ function formatWizard() {
21612161
codePropC.gotoLine(currentLine);
21622162
}
21632163

2164-
21652164
/**
21662165
* Save a project to the local file system
21672166
*/
@@ -2205,7 +2204,6 @@ function downloadPropC() {
22052204
}
22062205
}
22072206

2208-
22092207
/**
22102208
* Determine if this is deployed in a test or local dev environment
22112209
*
@@ -2216,7 +2214,6 @@ function isDevBuild() {
22162214
window.location.hostname.indexOf('localhost') >= 0);
22172215
}
22182216

2219-
22202217
/**
22212218
* Return a full application version string
22222219
*

0 commit comments

Comments
 (0)