Add missing semicolons
This commit is contained in:
parent
a201bfc5eb
commit
4e1c5435b8
|
@ -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) {
|
||||||
|
|
|
@ -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 || '';
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue