cursor when hovering edge
This commit is contained in:
parent
e5076533c0
commit
01ca6263e9
1 changed files with 14 additions and 2 deletions
|
@ -48,7 +48,9 @@ function graphSettings(type) {
|
||||||
enable: true,
|
enable: true,
|
||||||
enableForEdges: true,
|
enableForEdges: true,
|
||||||
type: 'HTML',
|
type: 'HTML',
|
||||||
//Change cursor style when hovering a node
|
onMouseMove: function(node, eventInfo, e) {
|
||||||
|
onMouseMoveHandler(node, eventInfo, e);
|
||||||
|
},
|
||||||
onMouseEnter: function () {
|
onMouseEnter: function () {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
@ -187,7 +189,9 @@ function graphSettings(type) {
|
||||||
Events: {
|
Events: {
|
||||||
enable: true,
|
enable: true,
|
||||||
type: 'HTML',
|
type: 'HTML',
|
||||||
//Change cursor style when hovering a node
|
onMouseMove: function(node, eventInfo, e) {
|
||||||
|
onMouseMoveHandler(node, eventInfo, e);
|
||||||
|
},
|
||||||
onMouseEnter: function () {
|
onMouseEnter: function () {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
@ -785,3 +789,11 @@ function onCreateLabelHandler(domElement, node) {
|
||||||
});
|
});
|
||||||
|
|
||||||
}//onCreateLabelHandler
|
}//onCreateLabelHandler
|
||||||
|
|
||||||
|
function onMouseMoveHandler(node, eventInfo, e) {
|
||||||
|
if (eventInfo.getEdge() != false) {
|
||||||
|
$('canvas').css('cursor', 'pointer');
|
||||||
|
} else {
|
||||||
|
$('canvas').css('cursor', 'default');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue