Add missing semicolons
This commit is contained in:
parent
a201bfc5eb
commit
4e1c5435b8
|
@ -26,7 +26,7 @@ export var encodings = {
|
|||
pseudoEncodingContinuousUpdates: -313,
|
||||
pseudoEncodingCompressLevel9: -247,
|
||||
pseudoEncodingCompressLevel0: -256,
|
||||
}
|
||||
};
|
||||
|
||||
export function encodingName(num) {
|
||||
switch (num) {
|
||||
|
|
|
@ -45,7 +45,7 @@ export default function RFB(target, url, options) {
|
|||
this._url = url;
|
||||
|
||||
// Connection details
|
||||
options = options || {}
|
||||
options = options || {};
|
||||
this._rfb_credentials = options.credentials || {};
|
||||
this._shared = 'shared' in options ? !!options.shared : true;
|
||||
this._repeaterID = options.repeaterID || '';
|
||||
|
|
|
@ -164,7 +164,7 @@ Localizer.prototype = {
|
|||
|
||||
process(document.body, true);
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
export var l10n = new Localizer();
|
||||
export default l10n.get.bind(l10n);
|
||||
|
|
Loading…
Reference in New Issue