Remove background from exported data

This commit is contained in:
Pierre HUBERT 2021-03-08 16:34:45 +01:00
parent 651bfb4e8d
commit 824759627f
2 changed files with 0 additions and 2 deletions

View File

@ -65,7 +65,6 @@
<tr><td>Comments forbidden</td><td id="u-commentsforbidden"></td></tr>
<tr><td>Allow posts from friends</td><td id="u-allowpostsfromfriends"></td></tr>
<tr><td>Account creation time</td><td id="u-accountcreationtime"></td></tr>
<tr><td>Background image</td><td><img id="u-bgimage" class="background-image" /></td></tr>
<tr><td>Page likes</td><td id="u-pagelikes"></td></tr>
</table>
</div>

View File

@ -23,6 +23,5 @@ function ApplyUserInfo() {
setBoolInnerHTMLById("u-commentsforbidden", userInfo.noCommentOnHisPage);
setBoolInnerHTMLById("u-allowpostsfromfriends", userInfo.allowPostFromFriendOnHisPage);
setInnerHTMLById("u-accountcreationtime", timeToStr(userInfo.account_creation_time));
applyURLToImage(byId("u-bgimage"), userInfo.backgroundImage);
setInnerHTMLById("u-pagelikes", timeToStr(userInfo.pageLikes));
}