show ips functionality; improvement to maximise icon; bugfix d3-force label wrap
This commit is contained in:
		| @@ -466,6 +466,12 @@ td > form.nd_inline-form { | ||||
|   width: 56px; | ||||
| } | ||||
|  | ||||
| /* netmap maximise icon */ | ||||
| #nd2_fullscreen_netmap { | ||||
|   fill: black; | ||||
|   font-size: 15px; | ||||
| } | ||||
|  | ||||
| /* fixup for prepended checkbox in sidebar */ | ||||
| .nd_searchcheckbox { | ||||
|   width: 121px; | ||||
|   | ||||
| @@ -3560,7 +3560,7 @@ function netGobrechtsD3Force(domContainerId, options, apexPluginId, apexPageItem | ||||
|             v.status.wrapLabelsOnNextTick = true; | ||||
|         } | ||||
|         if (v.status.graphStarted) { | ||||
|             v.main.labels.attr("lines", null); | ||||
|             v.main.labels.each(function() { d3.select(this).attr("lines", null) }); | ||||
|             v.tools.createCustomizeWizardIfNotRendering(); | ||||
|         } | ||||
|         return graph; | ||||
| @@ -3582,8 +3582,8 @@ function netGobrechtsD3Force(domContainerId, options, apexPluginId, apexPageItem | ||||
|             return v.conf.wrappedLabelWidth; | ||||
|         } | ||||
|         v.conf.wrappedLabelWidth = value; | ||||
|         if (v.conf.wrapLabels) { | ||||
|             v.main.labels.attr("lines", null); | ||||
|         if (v.conf.wrapLabels && v.main.labels) { | ||||
|             v.main.labels.each(function() { d3.select(this).attr("lines", null) }); | ||||
|             v.status.wrapLabelsOnNextTick = true; | ||||
|         } | ||||
|         if (v.status.graphStarted) { | ||||
| @@ -3612,7 +3612,7 @@ function netGobrechtsD3Force(domContainerId, options, apexPluginId, apexPageItem | ||||
|             v.status.wrapLabelsOnNextTick = true; | ||||
|         } | ||||
|         if (v.status.graphStarted) { | ||||
|             v.main.labels.attr("lines", null); | ||||
|             v.main.labels.each(function() { d3.select(this).attr("lines", null) }); | ||||
|             v.tools.createCustomizeWizardIfNotRendering(); | ||||
|         } | ||||
|         return graph; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user