1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-10 12:34:49 +02:00

expandit added to some admin->pref elements.

This commit is contained in:
Cameron
2012-12-10 17:38:52 -08:00
parent 1a3c3985db
commit 6e9ccdb59e
4 changed files with 145 additions and 110 deletions

View File

@@ -88,7 +88,7 @@ $(document).ready(function()
if(href === "#" || href == "")
{
idt = $(this).nextAll("div");
idt = $(this).nextAll("div.e-expandit-container");
$(idt).show("slow");
return true; // must be true or radio buttons etc. won't work
}
@@ -113,7 +113,7 @@ $(document).ready(function()
if(href === "#" || href == "")
{
idt = $(this).nextAll("div");
idt = $(this).nextAll("div.e-expandit-container");
$(idt).hide("slow");
return true; // must be true or radio buttons etc. won't work
}