HSLE#33559 autogrow op de textarea

svn path=/Website/trunk/; revision=26027
This commit is contained in:
Jos Groot Lipman
2015-08-20 14:09:07 +00:00
parent a5eba9a285
commit 87f7a34738
4 changed files with 26 additions and 0 deletions

View File

@@ -33,6 +33,13 @@ user.auth_required_or_abort(this_cnt.canWriteNotes);
<html>
<head>
<% FCLTHeader.Generate(); %>
<script>
jQuery(document).ready(function()
{
$('textarea').resize(function () { FcltMgr.resized(window) } );
$('textarea').autogrow();
});
</script>
</head>
<%

View File

@@ -29,6 +29,13 @@ user.auth_required_or_abort(this_fin.canWriteNotes);
<html>
<head>
<% FCLTHeader.Generate(); %>
<script>
jQuery(document).ready(function()
{
$('textarea').resize(function () { FcltMgr.resized(window) } );
$('textarea').autogrow();
});
</script>
</head>
<%

View File

@@ -103,6 +103,11 @@ FCLTHeader.Requires({ plugins: [] });
<%
}
%>
jQuery(document).ready(function()
{
$('textarea').resize(function () { FcltMgr.resized(window) } );
$('textarea').autogrow();
});
</script>
<body id="editbody">

View File

@@ -31,6 +31,13 @@ lcl.set_dialect(mld_opdr.opdr_type, "MLD_TYPEOPDR_KEY");
<html>
<head>
<% FCLTHeader.Generate(); %>
<script>
jQuery(document).ready(function()
{
$('textarea').resize(function () { FcltMgr.resized(window) } );
$('textarea').autogrow();
});
</script>
</head>
<%