Add missing semicolons
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user