Skip to content

Commit

Permalink
Fix menu lint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpmcmlxxvi committed Jun 10, 2019
1 parent 224e618 commit f823e8d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions dist/olexp.js
Original file line number Diff line number Diff line change
Expand Up @@ -5006,7 +5006,7 @@
* @public
* @return {object} Properties menu item
*/
olexp.menu.Properties = function(manager, settings) {
olexp.menu.properties = function(manager, settings) {
const control = new Properties(manager, settings);

return {
Expand Down Expand Up @@ -5111,7 +5111,7 @@
* @public
* @return {object} Remove menu item
*/
olexp.menu.Remove = function(manager, settings) {
olexp.menu.remove = function(manager, settings) {
const control = new Remove(manager, settings);

return {
Expand Down Expand Up @@ -5208,7 +5208,7 @@
* @public
* @return {object} Zoom menu item.
*/
olexp.menu.Zoom = function(manager, settings) {
olexp.menu.zoom = function(manager, settings) {
const control = new Zoom(manager, settings);

return {
Expand Down Expand Up @@ -6102,9 +6102,9 @@
// --------------------------------------------------

const settings = this.options.settings;
const zoom = olexp.menu.Zoom(this.manager, settings);
const properties = olexp.menu.Properties(this.manager, settings);
const remove = olexp.menu.Remove(this.manager, settings);
const zoom = olexp.menu.zoom(this.manager, settings);
const properties = olexp.menu.properties(this.manager, settings);
const remove = olexp.menu.remove(this.manager, settings);

this.menu = {items: [], callbacks: {}};

Expand Down
2 changes: 1 addition & 1 deletion dist/olexp.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/js/explorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -774,9 +774,9 @@ const olexp = {
// --------------------------------------------------

const settings = this.options.settings;
const zoom = olexp.menu.Zoom(this.manager, settings);
const properties = olexp.menu.Properties(this.manager, settings);
const remove = olexp.menu.Remove(this.manager, settings);
const zoom = olexp.menu.zoom(this.manager, settings);
const properties = olexp.menu.properties(this.manager, settings);
const remove = olexp.menu.remove(this.manager, settings);

this.menu = {items: [], callbacks: {}};

Expand Down
6 changes: 3 additions & 3 deletions src/js/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ const olexp = {
* @public
* @return {object} Properties menu item
*/
olexp.menu.Properties = function(manager, settings) {
olexp.menu.properties = function(manager, settings) {
const control = new Properties(manager, settings);

return {
Expand Down Expand Up @@ -284,7 +284,7 @@ const olexp = {
* @public
* @return {object} Remove menu item
*/
olexp.menu.Remove = function(manager, settings) {
olexp.menu.remove = function(manager, settings) {
const control = new Remove(manager, settings);

return {
Expand Down Expand Up @@ -382,7 +382,7 @@ const olexp = {
* @public
* @return {object} Zoom menu item.
*/
olexp.menu.Zoom = function(manager, settings) {
olexp.menu.zoom = function(manager, settings) {
const control = new Zoom(manager, settings);

return {
Expand Down

0 comments on commit f823e8d

Please sign in to comment.