This commit is contained in:
Devaev Maxim 2020-07-09 11:11:12 +03:00
parent dc5b8c2522
commit e390914c7e
2 changed files with 4 additions and 4 deletions

View File

@ -321,7 +321,7 @@ export function Msd() {
var __refreshImageSelector = function() {
let el = $("msd-image-selector");
if (el.options.length == 0) {
if (el.options.length === 0) {
el.options[0] = new Option("< Not selected >", "", false, false);
} else {
el.options.length = 1; // Cleanup
@ -343,7 +343,7 @@ export function Msd() {
let option = new Option(name, name, false, false);
el.options[index] = option;
if (__state.drive.image && __state.drive.image.name == name && __state.drive.image.in_storage) {
if (__state.drive.image && __state.drive.image.name === name && __state.drive.image.in_storage) {
select_index = index;
}
++index;

View File

@ -56,7 +56,7 @@ export function Session() {
/************************************************************************/
var __setAboutInfoMeta = function(state) {
if (state != null) {
if (state !== null) {
let text = JSON.stringify(state, undefined, 4).replace(/ /g, "&nbsp;").replace(/\n/g, "<br>");
$("about-meta").innerHTML = `
<span class="code-comment">// The Pi-KVM metadata.<br>
@ -142,7 +142,7 @@ export function Session() {
var __formatUname = function(kernel) {
let pairs = [];
for (let field of Object.keys(kernel).sort()) {
if (field != "system") {
if (field !== "system") {
pairs.push([tools.upperFirst(field), kernel[field]]);
}
}