1
0
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:
Cameron
2015-06-07 20:28:00 -07:00
parent b90e0abcd9
commit 0c9350a3cc
5 changed files with 218 additions and 23 deletions

View File

@@ -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;
});