mt #1

Merged
truck merged 17 commits from mt into master 2020-04-09 13:54:45 +03:00
2 changed files with 4 additions and 0 deletions
Showing only changes of commit 8fd83c3040 - Show all commits

View file

@ -416,6 +416,8 @@ class @Sahli
@increaseFont($('pre'), -2)
when @keycode '9'
@increaseFont($('pre'), 2)
when @keycode '0'
$('pre').css("font-size", "2.5vw");
when 40 # down
@moveline 1
when 38 # up

View file

@ -487,6 +487,8 @@ l__________/__________|___|______l__________j_____j
return _this.increaseFont($('pre'), -2);
case _this.keycode('9'):
return _this.increaseFont($('pre'), 2);
case _this.keycode('0'):
return $('pre').css("font-size", "2.5vw");
case 40:
return _this.moveline(1);
case 38: