Add missing semicolons

This commit is contained in:
Samuel Mannehed 2017-11-05 21:40:47 +01:00
parent a201bfc5eb
commit 4e1c5435b8
3 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ export var encodings = {
pseudoEncodingContinuousUpdates: -313, pseudoEncodingContinuousUpdates: -313,
pseudoEncodingCompressLevel9: -247, pseudoEncodingCompressLevel9: -247,
pseudoEncodingCompressLevel0: -256, pseudoEncodingCompressLevel0: -256,
} };
export function encodingName(num) { export function encodingName(num) {
switch (num) { switch (num) {

View File

@ -45,7 +45,7 @@ export default function RFB(target, url, options) {
this._url = url; this._url = url;
// Connection details // Connection details
options = options || {} options = options || {};
this._rfb_credentials = options.credentials || {}; this._rfb_credentials = options.credentials || {};
this._shared = 'shared' in options ? !!options.shared : true; this._shared = 'shared' in options ? !!options.shared : true;
this._repeaterID = options.repeaterID || ''; this._repeaterID = options.repeaterID || '';

View File

@ -164,7 +164,7 @@ Localizer.prototype = {
process(document.body, true); process(document.body, true);
}, },
} };
export var l10n = new Localizer(); export var l10n = new Localizer();
export default l10n.get.bind(l10n); export default l10n.get.bind(l10n);