mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-01-27 14:43:14 -05:00
Fixed minification.
This commit is contained in:
parent
609654b885
commit
d97aecab90
@ -64,6 +64,7 @@ var minifyMeshCentralSourceFiles = [
|
|||||||
"../views/error4042.handlebars",
|
"../views/error4042.handlebars",
|
||||||
"../views/error404-mobile.handlebars",
|
"../views/error404-mobile.handlebars",
|
||||||
"../views/login.handlebars",
|
"../views/login.handlebars",
|
||||||
|
"../views/login2.handlebars",
|
||||||
"../views/login-mobile.handlebars",
|
"../views/login-mobile.handlebars",
|
||||||
"../views/terms.handlebars",
|
"../views/terms.handlebars",
|
||||||
"../views/terms-mobile.handlebars",
|
"../views/terms-mobile.handlebars",
|
||||||
|
@ -5440,7 +5440,7 @@
|
|||||||
"SMS error: {0}"
|
"SMS error: {0}"
|
||||||
];
|
];
|
||||||
if (typeof n.titleid == 'number') { try { n.title = translatedTitles[n.titleid]; } catch (ex) { } }
|
if (typeof n.titleid == 'number') { try { n.title = translatedTitles[n.titleid]; } catch (ex) { } }
|
||||||
if (typeof n.msgid == 'number') { try { n.text = translatedMessages[n.msgid]; if (Array.isArray(n.args)) { n.text = format(n.text, ...n.args); } } catch (ex) { } }
|
if (typeof n.msgid == 'number') { try { n.text = translatedMessages[n.msgid]; if (Array.isArray(n.args)) { n.text = format(n.text, n.args[0], n.args[1], n.args[2], n.args[3], n.args[4], n.args[5]); } } catch (ex) { } }
|
||||||
|
|
||||||
// Show notification within the web page.
|
// Show notification within the web page.
|
||||||
if (n.time == null) { n.time = Date.now(); }
|
if (n.time == null) { n.time = Date.now(); }
|
||||||
|
@ -13569,7 +13569,7 @@
|
|||||||
"SMS error: {0}"
|
"SMS error: {0}"
|
||||||
];
|
];
|
||||||
if (typeof n.titleid == 'number') { try { n.title = translatedTitles[n.titleid]; } catch (ex) {} }
|
if (typeof n.titleid == 'number') { try { n.title = translatedTitles[n.titleid]; } catch (ex) {} }
|
||||||
if (typeof n.msgid == 'number') { try { n.text = translatedMessages[n.msgid]; if (Array.isArray(n.args)) { n.text = format(n.text, ...n.args); } } catch (ex) {} }
|
if (typeof n.msgid == 'number') { try { n.text = translatedMessages[n.msgid]; if (Array.isArray(n.args)) { n.text = format(n.text, n.args[0], n.args[1], n.args[2], n.args[3], n.args[4], n.args[5]); } } catch (ex) { } }
|
||||||
|
|
||||||
// Show notification within the web page.
|
// Show notification within the web page.
|
||||||
if (n.time == null) { n.time = Date.now(); }
|
if (n.time == null) { n.time = Date.now(); }
|
||||||
@ -14517,7 +14517,7 @@
|
|||||||
var base64 = (base64String + padding).replace(/-/g, '+').replace(/_/g, '/');
|
var base64 = (base64String + padding).replace(/-/g, '+').replace(/_/g, '/');
|
||||||
var rawData = atob(base64);
|
var rawData = atob(base64);
|
||||||
var outputArray = new Uint8Array(rawData.length);
|
var outputArray = new Uint8Array(rawData.length);
|
||||||
for (let i = 0; i < rawData.length; ++i) { outputArray[i] = rawData.charCodeAt(i); }
|
for (var i = 0; i < rawData.length; ++i) { outputArray[i] = rawData.charCodeAt(i); }
|
||||||
return outputArray;
|
return outputArray;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user