summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Mannehed <samuel@cendio.se>2017-05-13 01:56:35 +0200
committerSamuel Mannehed <samuel@cendio.se>2017-05-13 01:56:35 +0200
commitafb621d577a9b90763761abdabeb9bfa8810981c (patch)
tree0ccba413ed2ed332f848716c87e7ae27a3c8d318
parentc464f47e964678f6142bcbd080d36dcea9caa9d1 (diff)
downloadnovnc-afb621d577a9b90763761abdabeb9bfa8810981c.tar.gz
Add missing semicolon
-rw-r--r--core/input/devices.js2
-rw-r--r--core/input/domkeytable.js2
-rw-r--r--tests/playback-ui.js2
-rw-r--r--tests/test.display.js2
-rw-r--r--tests/test.rfb.js2
-rw-r--r--tests/test.util.js2
-rw-r--r--tests/test.websock.js2
7 files changed, 7 insertions, 7 deletions
diff --git a/core/input/devices.js b/core/input/devices.js
index 08c8a63..aff1945 100644
--- a/core/input/devices.js
+++ b/core/input/devices.js
@@ -9,7 +9,7 @@
/*global window, Util */
import * as Log from '../util/logging.js';
-import { isTouchDevice } from '../util/browsers.js'
+import { isTouchDevice } from '../util/browsers.js';
import { setCapture, stopEvent, getPointerEvent } from '../util/events.js';
import { set_defaults, make_properties } from '../util/properties.js';
import * as KeyboardUtil from "./util.js";
diff --git a/core/input/domkeytable.js b/core/input/domkeytable.js
index 6758c08..7103bba 100644
--- a/core/input/domkeytable.js
+++ b/core/input/domkeytable.js
@@ -4,7 +4,7 @@
* Licensed under MPL 2.0 or any later version (see LICENSE.txt)
*/
-import KeyTable from "./keysym.js"
+import KeyTable from "./keysym.js";
/*
* Mapping between HTML key values and VNC/X11 keysyms for "special"
diff --git a/tests/playback-ui.js b/tests/playback-ui.js
index f47b9d8..4d79d17 100644
--- a/tests/playback-ui.js
+++ b/tests/playback-ui.js
@@ -36,7 +36,7 @@ function enableUI(recording) {
message("VNC_frame_data.length: " + recording.VNC_frame_data.length);
const startButton = document.getElementById('startButton');
- startButton.disabled = false
+ startButton.disabled = false;
startButton.addEventListener('click', start);
frames = recording.VNC_frame_data;
diff --git a/tests/test.display.js b/tests/test.display.js
index b356334..f68a7de 100644
--- a/tests/test.display.js
+++ b/tests/test.display.js
@@ -7,7 +7,7 @@ import { _forceCursorURIs, browserSupportsCursorURIs } from '../core/util/browse
import './assertions.js';
import 'sinon';
-import sinonChai from '../node_modules/sinon-chai/lib/sinon-chai.js'
+import sinonChai from '../node_modules/sinon-chai/lib/sinon-chai.js';
chai.use(sinonChai);
describe('Display/Canvas Helper', function () {
diff --git a/tests/test.rfb.js b/tests/test.rfb.js
index ebe3ec7..b39f52e 100644
--- a/tests/test.rfb.js
+++ b/tests/test.rfb.js
@@ -8,7 +8,7 @@ import Websock from '../core/websock.js';
import FakeWebSocket from './fake.websocket.js';
import './assertions';
import 'sinon';
-import sinonChai from '../node_modules/sinon-chai/lib/sinon-chai.js'
+import sinonChai from '../node_modules/sinon-chai/lib/sinon-chai.js';
chai.use(sinonChai);
function make_rfb (extra_opts) {
diff --git a/tests/test.util.js b/tests/test.util.js
index 5b43874..6e0e679 100644
--- a/tests/test.util.js
+++ b/tests/test.util.js
@@ -7,7 +7,7 @@ import * as Log from '../core/util/logging.js';
import l10nGet, { l10n } from '../core/util/localization.js';
import 'sinon';
-import sinonChai from '../node_modules/sinon-chai/lib/sinon-chai.js'
+import sinonChai from '../node_modules/sinon-chai/lib/sinon-chai.js';
chai.use(sinonChai);
describe('Utils', function() {
diff --git a/tests/test.websock.js b/tests/test.websock.js
index b483590..425472c 100644
--- a/tests/test.websock.js
+++ b/tests/test.websock.js
@@ -7,7 +7,7 @@ import FakeWebSocket from './fake.websocket.js';
import './assertions';
import 'sinon';
-import sinonChai from '../node_modules/sinon-chai/lib/sinon-chai.js'
+import sinonChai from '../node_modules/sinon-chai/lib/sinon-chai.js';
chai.use(sinonChai);
describe('Websock', function() {