Skip to content

Commit

Permalink
Update submitpage.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiang-88 authored Sep 4, 2023
1 parent 23cbfed commit 21d925d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trunk/web/template/syzoj/submitpage.php
Original file line number Diff line number Diff line change
Expand Up @@ -388,13 +388,13 @@ function autoSave(){
function increaseFontSize(event) {
event.preventDefault();
var currentSize = parseInt(editor.getFontSize());
editor.setFontSize(currentSize + 1);
editor.setFontSize(currentSize + 3);
}

function decreaseFontSize(event) {
event.preventDefault();
var currentSize = parseInt(editor.getFontSize());
editor.setFontSize(currentSize - 1);
editor.setFontSize(currentSize - 3);
}
function toggleTheme(event) {
event.preventDefault();
Expand Down

0 comments on commit 21d925d

Please sign in to comment.