pull/1/head
LianaHus 6 years ago
parent 26625a73c4
commit 680f3e8539
  1. 5
      src/app/editor/editor.js

@ -136,9 +136,10 @@ class Editor {
langTools.addCompleter(flowCompleter)
// zoom with Ctrl+wheel
window.addEventListener("wheel", (e) => {
if (e.ctrlKey && Math.abs(e.wheelY) > 5)
window.addEventListener('wheel', (e) => {
if (e.ctrlKey && Math.abs(e.wheelY) > 5) {
this.editorFontSize(e.wheelY > 0 ? 1 : -1)
}
})
// EVENTS LISTENERS

Loading…
Cancel
Save