Merge pull request #1165 from annando/1409-issue-1157

Issue 1157: Unused javascript function is removed.
This commit is contained in:
fabrixxm 2014-09-27 19:03:20 +02:00
commit bd0b93e630
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();