We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd85783 commit c9c9e7eCopy full SHA for c9c9e7e
src/MyCLabs/MUIH/Tabs.php
@@ -234,7 +234,8 @@ public function getHTML()
234
public function getScript()
235
{
236
if (($this->activatedTab !== null) && ($this->activatedTab->isAjax())) {
237
- return '$("#' . $this->activatedTab->getAttribute('id') . '").trigger("loadTab.muih");';
+ return '$("#' . $this->activatedTab->getAttribute('id') . '")' .
238
+ '.trigger("loadTab.muih", ["' . implode('', $this->activatedTab->getContent()) . '"]);';
239
}
240
241
return '';
0 commit comments