BLCC#52522 meer/minder toggle toegevoegd

svn path=/Website/branches/v2017.3/; revision=37306
This commit is contained in:
Ruud Lipper
2018-03-08 07:37:29 +00:00
parent 512c8c9d46
commit d3bf2a7363

View File

@@ -175,6 +175,18 @@ if (opdr_key > 0)
}
});
$("span.notetoggler").click(function ()
{
$(this).toggleClass("open");
$(this).prev().toggleClass("open");
FcltMgr.resized();
// ...meer/...minder toggle
if ($(this).hasClass("open"))
$(this).html("<%=L('lcl_rs_truncate')%>");
else
$(this).html("<%=L('lcl_rs_truncated')%>");
});
var timerID=null;
function delayed(delay, fn)
{