Skip to content
Snippets Groups Projects
Commit 14fa2345 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

submenu functionality fixed (adding submenu options fixed)

parent d8f3cdb0
No related branches found
No related tags found
1 merge request!5Frontend refactor
......@@ -29,7 +29,7 @@ ContextMenu.prototype.constructor = ContextMenu;
ContextMenu.prototype.addOption = function(name, handler) {
var self = this;
if (name instanceof SubMenu) {
self.addSubMenu(name);
self.getElement().appendChild(name.getElement());
} else {
var option = Functions.createElement({
type : "li",
......
......@@ -3,8 +3,9 @@
/* exported logger */
var ContextMenu = require('./ContextMenu');
var Functions = require('../Functions');
var SubMenu = require('./SubMenu');
var Functions = require('../Functions');
var logger = require('../logger');
function MapContextMenu(params) {
......@@ -17,6 +18,20 @@ function MapContextMenu(params) {
MapContextMenu.prototype = Object.create(ContextMenu.prototype);
MapContextMenu.prototype.constructor = MapContextMenu;
MapContextMenu.prototype.init = function() {
var li = Functions.createElement({
type : "li"
});
var submenu = new SubMenu({
element : li,
name : "test",
customMap : self.getMap()
});
submenu.addOption("Option A");
submenu.addOption("Option B");
self.addOption(submenu);
};
MapContextMenu.prototype._createMapContextMenuGui = function() {
var self = this;
self.addOption("Add comment", function() {
......@@ -25,6 +40,7 @@ MapContextMenu.prototype._createMapContextMenuGui = function() {
self.addOption("Select mode", function() {
return self.getMap().turnOnOffDrawing();
});
};
module.exports = MapContextMenu;
......@@ -43,7 +43,7 @@ SubMenu.prototype._createGui = function(params) {
SubMenu.prototype.addOption = function(name, handler) {
var self = this;
if (name instanceof SubMenu) {
self.addSubMenu(name);
self.getElement().appendChild(name.getElement());
} else {
var option = Functions.createElement({
type : "li",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment