N°2847 * Fix wrong image name for default placeholder

* Close popupmenu when clicking on toggler a second time
* Fix an error in newsroom menu
This commit is contained in:
Stephen Abello
2020-08-10 14:16:43 +02:00
parent 440cda87b1
commit 4195cd011c
4 changed files with 17 additions and 7 deletions

View File

@@ -89,5 +89,16 @@ $(function()
{
this._closePopup();
},
togglePopup: function()
{
if(this.element.hasClass(this.css_classes.opened))
{
this._closePopup();
}
else
{
this._openPopup();
}
},
});
});