Skip to content

Commit bc38406

Browse files
author
Christoffer Henne
committed
Syntax
1 parent a3a3291 commit bc38406

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

demo/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,15 @@ <h1>StreamBIM widget demo</h1>
112112

113113
var getProjectIdClicked = function () {
114114
StreamBIM.getProjectId().then( (result) => {
115-
logEvent('Got project ID: ' + result;
115+
logEvent('Got project ID: ' + result);
116116
}).catch( function(error) {
117117
logError('getProjectId', error);
118118
});
119119
}
120120

121121
var getCameraStateClicked = function () {
122122
StreamBIM.getCameraState().then( (result) => {
123-
logEvent('Got camera state: ' + JSON.stringify(result);
123+
logEvent('Got camera state: ' + JSON.stringify(result));
124124
window.lastCameraState = result;
125125
}).catch( function(error) {
126126
logError('getCameraState', error);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "streambim-widget-api",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"description": "A JavaScript library for interacting with StreamBIM from within an embedded widget.",
55
"main": "dist/streambim-widget-api.min.js",
66
"scripts": {

0 commit comments

Comments
 (0)