Issue 1157: Unused javascript function is removed.

This commit is contained in:
Michael Vogel 2014-09-27 14:17:50 +02:00
parent 459fc2fabd
commit 2bbd7ab67f
1 changed files with 0 additions and 15 deletions

View File

@ -32,21 +32,6 @@ else if ($style == "plus")
$a->page['htmlhead'] .= <<< EOT
<script type="text/javascript">
function collapseHeight(elems) {
var elemName = '.wall-item-body:not(.divmore)';
if(typeof elems != 'undefined') {
elemName = elems + ' ' + elemName;
}
$(elemName).each(function() {
if($(this).height() > 450) {
$('html').height($('html').height());
$(this).divgrow({ initialHeight: 400, showBrackets: false, speed: 0 });
$(this).addClass('divmore');
$('html').height('auto');
}
});
}
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();