// FREEBIE
This commit is contained in:
lilia 2016-08-24 16:56:22 -07:00
parent 27631c7d03
commit 87f4029210

View file

@ -67,7 +67,7 @@
},
events: { 'mousewheel': 'zoomText' },
zoomText: function(e) {
if (e.ctrlKey == true) {
if (e.ctrlKey === true) {
if (e.originalEvent.deltaY > 0) {
if (this.currentSize > this.minSize) {
this.currentSize--;