Fix typos

This commit is contained in:
Vasiliy Halimonchuk 2019-05-30 00:00:24 +03:00
parent fe0fb3a251
commit 80d1c48f0d
4 changed files with 11 additions and 11 deletions

View file

@ -28,7 +28,7 @@
'use strict';
let lastShownContexMenu = null;
let lastShownContextMenu = null;
const ContextMenu = new Class({
//implements
Implements: [Options, Events],
@ -214,12 +214,12 @@ const ContextMenu = new Class({
//show menu
show: function(trigger) {
if (lastShownContexMenu && lastShownContexMenu != this)
lastShownContexMenu.hide();
if (lastShownContextMenu && lastShownContextMenu != this)
lastShownContextMenu.hide();
this.fx.start(1);
this.fireEvent('show');
this.shown = true;
lastShownContexMenu = this;
lastShownContextMenu = this;
return this;
},