Fix lint
// FREEBIE
This commit is contained in:
parent
27631c7d03
commit
87f4029210
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@
|
||||||
},
|
},
|
||||||
events: { 'mousewheel': 'zoomText' },
|
events: { 'mousewheel': 'zoomText' },
|
||||||
zoomText: function(e) {
|
zoomText: function(e) {
|
||||||
if (e.ctrlKey == true) {
|
if (e.ctrlKey === true) {
|
||||||
if (e.originalEvent.deltaY > 0) {
|
if (e.originalEvent.deltaY > 0) {
|
||||||
if (this.currentSize > this.minSize) {
|
if (this.currentSize > this.minSize) {
|
||||||
this.currentSize--;
|
this.currentSize--;
|
||||||
|
|
Loading…
Add table
Reference in a new issue