New maps in progress... (pop-up window to nodes)
This commit is contained in:
parent
4c894fd04a
commit
ef1d7e22bc
|
@ -57,7 +57,7 @@ MapController.prototype.click_event = function(event) {
|
||||||
switch (event.which) {
|
switch (event.which) {
|
||||||
case 1:
|
case 1:
|
||||||
if ($(event.currentTarget).attr("class") == "node") {
|
if ($(event.currentTarget).attr("class") == "node") {
|
||||||
self.popup_map();
|
self.popup_map(self, event);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
|
@ -69,6 +69,16 @@ MapController.prototype.click_event = function(event) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MapController.prototype.popup_map = function() {
|
MapController.prototype.popup_map = function(self, event) {
|
||||||
//POP-UP
|
//console.log($(self._target + " svg"));
|
||||||
|
//console.log(event);
|
||||||
|
var xPos = event.pageX;
|
||||||
|
var YPos = event.pageY;
|
||||||
|
$(self._target + " svg").after($("<div>").attr("id", "dialog_popup"));
|
||||||
|
$("#dialog_popup").dialog({
|
||||||
|
modal: false,
|
||||||
|
title: "Ventana Modarrrrl!!",
|
||||||
|
resizable: false,
|
||||||
|
position: [xPos,YPos]
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue