mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
Remove background from exported data
This commit is contained in:
parent
651bfb4e8d
commit
824759627f
@ -65,7 +65,6 @@
|
|||||||
<tr><td>Comments forbidden</td><td id="u-commentsforbidden"></td></tr>
|
<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>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>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>
|
<tr><td>Page likes</td><td id="u-pagelikes"></td></tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
@ -23,6 +23,5 @@ function ApplyUserInfo() {
|
|||||||
setBoolInnerHTMLById("u-commentsforbidden", userInfo.noCommentOnHisPage);
|
setBoolInnerHTMLById("u-commentsforbidden", userInfo.noCommentOnHisPage);
|
||||||
setBoolInnerHTMLById("u-allowpostsfromfriends", userInfo.allowPostFromFriendOnHisPage);
|
setBoolInnerHTMLById("u-allowpostsfromfriends", userInfo.allowPostFromFriendOnHisPage);
|
||||||
setInnerHTMLById("u-accountcreationtime", timeToStr(userInfo.account_creation_time));
|
setInnerHTMLById("u-accountcreationtime", timeToStr(userInfo.account_creation_time));
|
||||||
applyURLToImage(byId("u-bgimage"), userInfo.backgroundImage);
|
|
||||||
setInnerHTMLById("u-pagelikes", timeToStr(userInfo.pageLikes));
|
setInnerHTMLById("u-pagelikes", timeToStr(userInfo.pageLikes));
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user