New maps in progress... (Node context menu tests)

This commit is contained in:
Arturo Gonzalez 2016-03-08 15:40:11 +01:00
parent 1b60dbb7ad
commit 92afe7614d
2 changed files with 19 additions and 1 deletions

View File

@ -59,6 +59,7 @@ abstract class Map {
$this->requires_js[] = "include/javascript/jquery.tooltipster.js";
$this->requires_js[] = "include/javascript/jquery.svg.js";
$this->requires_js[] = "include/javascript/jquery.svgdom.js";
$this->requires_js[] = "include/javascript/d3-context-menu.js";
if (!$this->loadDB()) {
$this->status = STATUS_ERROR;
@ -358,6 +359,7 @@ $this->edges = json_decode(
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"include/styles/tooltipster-shadow.css\"/>" . "\n";
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"include/styles/tooltipster-noir.css\"/>" . "\n";
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"include/styles/tooltipster-light.css\"/>" . "\n";
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"include/styles/d3-context-menu.css\"/>" . "\n";
//Tooltips spinner
echo "<div id='spinner_tooltip' style='display:none;'>";
html_print_image('images/spinner.gif');

View File

@ -353,6 +353,21 @@ MapController.prototype.move_arrow = function (id_from_any_point_arrow) {
MapController.prototype.init_events = function(principalObject) {
self = this;
var node_menu = [
{
title: 'Ejemplo 1',
action: function(elm, d, i) {
console.log('Primer elemento!!');
}
},
{
title: 'Ejemplo 1',
action: function(elm, d, i) {
console.log('Segundo elemento!!');
}
}
]
$(this._target + " svg *, " + this._target + " svg")
.off("mousedown", {map: this}, this.click_event);
@ -376,7 +391,8 @@ MapController.prototype.init_events = function(principalObject) {
if (d3.event.defaultPrevented) return;
self.tooltip_map_create(self, this);
});
})
.on("contextmenu", d3.contextMenu(node_menu));
var drag = d3.behavior.drag()
.origin(function(d) { return d; })