Added reset button in posting editor (#749)

This commit is contained in:
Roman Kelesidis 2023-05-31 21:09:33 +07:00 committed by GitHub
commit c31d64ddfb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,6 +76,7 @@ ajax.callback.posts = function(data) {
</span> </span>
<div class="buttons floatR"> <div class="buttons floatR">
<input type="reset" value="{L_CANCEL}" class="liteoption"/>
<input type="button" value="+" onclick="$('#message').css({height: parseInt($('#message').css('height')) + 100}); return false;"> <input type="button" value="+" onclick="$('#message').css({height: parseInt($('#message').css('height')) + 100}); return false;">
<input type="button" value="-" onclick="$('#message').css({height: parseInt($('#message').css('height')) - 100}); return false;"> <input type="button" value="-" onclick="$('#message').css({height: parseInt($('#message').css('height')) - 100}); return false;">
</div> </div>