mirror of
https://github.com/e107inc/e107.git
synced 2025-08-03 21:27:25 +02:00
Quick fix for ajax breaking inactive tabs layout when inserting html. (due to display:block css being added by default by jQuery)
This commit is contained in:
@@ -625,7 +625,7 @@ var e107 = e107 || {'settings': {}, 'behaviors': {}};
|
|||||||
|
|
||||||
case 'html':
|
case 'html':
|
||||||
default:
|
default:
|
||||||
$target.html(data).hide().show("slow");
|
$target.html(data); // .hide().show("slow"); //XXX this adds display:block by default which breaks loading content within inactive tabs.
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user