* Fix bug#6943.

This commit is contained in:
leiyong
2021-04-06 11:48:40 +03:00
parent a09d9f3cf3
commit a2f2b2ca69
+10 -1
View File
@@ -62,7 +62,16 @@ include '../../common/view/header.lite.html.php';
/* Click my site to modify the left navigation. */
function changeLeftNavigation()
{
window.parent.$.apps.open('my');
if(window.parent && window.parent.$.apps && isOnlybody)
{
$.closeModal();
window.parent.$.apps.open('my');
}
else
{
$.apps.close();
$.apps.open('my');
}
}
</script>
</html>