mirror of
https://github.com/e107inc/e107.git
synced 2025-10-10 12:34:49 +02:00
X-editable upgraded to v1.5.1. e-expandit class now uses slideToggle() jquery method. AdminUI: tag fields can now be edited inline even if empty.
This commit is contained in:
@@ -73,7 +73,7 @@ $(document).ready(function()
|
||||
|
||||
$(select).each( function() {
|
||||
|
||||
$('#'+ this).toggle("slow");
|
||||
$('#'+ this).slideToggle("slow");
|
||||
});
|
||||
|
||||
return false;
|
||||
@@ -84,13 +84,13 @@ $(document).ready(function()
|
||||
if(href === "#" || href == "")
|
||||
{
|
||||
idt = $(this).nextAll("div");
|
||||
$(idt).toggle("slow");
|
||||
$(idt).slideToggle("slow");
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
//var id = $(this).attr("href");
|
||||
$(href).toggle("slow");
|
||||
$(href).slideToggle("slow");
|
||||
|
||||
return false;
|
||||
});
|
||||
|
Reference in New Issue
Block a user