Fixed formatting on menu_view.js

This commit is contained in:
Nathan Byrd 2022-01-23 10:46:09 -06:00
parent 2c2951866b
commit 0f4cecc97d

View file

@ -74,7 +74,7 @@ MenuView.prototype.setTextOverflow = function(overflow) {
} }
MenuView.prototype.hasTextOverflow = function() { MenuView.prototype.hasTextOverflow = function() {
return this.textOverflow !== undefined; return this.textOverflow != undefined;
} }
MenuView.prototype.setItems = function(items) { MenuView.prototype.setItems = function(items) {
@ -305,7 +305,7 @@ MenuView.prototype.setJustify = function(justify) {
this.justify = justify; this.justify = justify;
this.invalidateRenderCache(); this.invalidateRenderCache();
this.positionCacheExpired = true; this.positionCacheExpired = true;
}; }
MenuView.prototype.setHotKeys = function(hotKeys) { MenuView.prototype.setHotKeys = function(hotKeys) {
if(_.isObject(hotKeys)) { if(_.isObject(hotKeys)) {