Add missing semicolon
This commit is contained in:
parent
c464f47e96
commit
afb621d577
|
@ -9,7 +9,7 @@
|
||||||
/*global window, Util */
|
/*global window, Util */
|
||||||
|
|
||||||
import * as Log from '../util/logging.js';
|
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 { setCapture, stopEvent, getPointerEvent } from '../util/events.js';
|
||||||
import { set_defaults, make_properties } from '../util/properties.js';
|
import { set_defaults, make_properties } from '../util/properties.js';
|
||||||
import * as KeyboardUtil from "./util.js";
|
import * as KeyboardUtil from "./util.js";
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* Licensed under MPL 2.0 or any later version (see LICENSE.txt)
|
* 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"
|
* Mapping between HTML key values and VNC/X11 keysyms for "special"
|
||||||
|
|
|
@ -36,7 +36,7 @@ function enableUI(recording) {
|
||||||
message("VNC_frame_data.length: " + recording.VNC_frame_data.length);
|
message("VNC_frame_data.length: " + recording.VNC_frame_data.length);
|
||||||
|
|
||||||
const startButton = document.getElementById('startButton');
|
const startButton = document.getElementById('startButton');
|
||||||
startButton.disabled = false
|
startButton.disabled = false;
|
||||||
startButton.addEventListener('click', start);
|
startButton.addEventListener('click', start);
|
||||||
|
|
||||||
frames = recording.VNC_frame_data;
|
frames = recording.VNC_frame_data;
|
||||||
|
|
|
@ -7,7 +7,7 @@ import { _forceCursorURIs, browserSupportsCursorURIs } from '../core/util/browse
|
||||||
|
|
||||||
import './assertions.js';
|
import './assertions.js';
|
||||||
import 'sinon';
|
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);
|
chai.use(sinonChai);
|
||||||
|
|
||||||
describe('Display/Canvas Helper', function () {
|
describe('Display/Canvas Helper', function () {
|
||||||
|
|
|
@ -8,7 +8,7 @@ import Websock from '../core/websock.js';
|
||||||
import FakeWebSocket from './fake.websocket.js';
|
import FakeWebSocket from './fake.websocket.js';
|
||||||
import './assertions';
|
import './assertions';
|
||||||
import 'sinon';
|
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);
|
chai.use(sinonChai);
|
||||||
|
|
||||||
function make_rfb (extra_opts) {
|
function make_rfb (extra_opts) {
|
||||||
|
|
|
@ -7,7 +7,7 @@ import * as Log from '../core/util/logging.js';
|
||||||
import l10nGet, { l10n } from '../core/util/localization.js';
|
import l10nGet, { l10n } from '../core/util/localization.js';
|
||||||
|
|
||||||
import 'sinon';
|
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);
|
chai.use(sinonChai);
|
||||||
|
|
||||||
describe('Utils', function() {
|
describe('Utils', function() {
|
||||||
|
|
|
@ -7,7 +7,7 @@ import FakeWebSocket from './fake.websocket.js';
|
||||||
|
|
||||||
import './assertions';
|
import './assertions';
|
||||||
import 'sinon';
|
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);
|
chai.use(sinonChai);
|
||||||
|
|
||||||
describe('Websock', function() {
|
describe('Websock', function() {
|
||||||
|
|
Loading…
Reference in New Issue