change drag and drop date to match
This commit is contained in:
parent
dbdc15ca90
commit
9dbd07ae79
3 changed files with 3 additions and 3 deletions
|
|
@ -7495,7 +7495,7 @@ window.addEventListener('drop', function (event) {
|
|||
/* Display the save file name and date on the button */
|
||||
|
||||
if (fileName) {
|
||||
label.innerHTML = "".concat(SYMBOL_FILE).concat(fileName, " ").concat(fileDate);
|
||||
label.innerHTML = "".concat(SYMBOL_FILE).concat(fileName, "<div class=\"code-little\">").concat(fileDate, "</div>");
|
||||
} else {
|
||||
label.innerHTML = labelInitialText;
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1067,7 +1067,7 @@ window.addEventListener('drop', (event) => {
|
|||
|
||||
/* Display the save file name and date on the button */
|
||||
if (fileName) {
|
||||
label.innerHTML = `${SYMBOL_FILE}${fileName} ${fileDate}`;
|
||||
label.innerHTML = `${SYMBOL_FILE}${fileName}<div class="code-little">${fileDate}</div>`;
|
||||
} else {
|
||||
label.innerHTML = labelInitialText;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue