@bobfrankston/mailx 1.0.129 → 1.0.130
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/app.js +2 -4
- package/package.json +1 -1
package/client/app.js
CHANGED
|
@@ -123,11 +123,9 @@ function clearViewer() {
|
|
|
123
123
|
if (body)
|
|
124
124
|
body.innerHTML = "";
|
|
125
125
|
if (header)
|
|
126
|
-
header.
|
|
127
|
-
if (att)
|
|
128
|
-
att.innerHTML = "";
|
|
126
|
+
header.hidden = true;
|
|
127
|
+
if (att)
|
|
129
128
|
att.hidden = true;
|
|
130
|
-
}
|
|
131
129
|
}
|
|
132
130
|
initFolderTree(folderTree, (accountId, folderId, folderName, specialUse) => {
|
|
133
131
|
currentFolderSpecialUse = specialUse;
|