mirror of
https://github.com/lockfale/OSINT-Framework.git
synced 2026-09-07 02:07:46 +02:00
Merge pull request #570 from lockfale/feature/THE-79-pan-zoom
Fixing pan zoom weirdness
This commit is contained in:
@@ -40,6 +40,11 @@
|
||||
"type": "url",
|
||||
"url": "https://namecheckup.com/"
|
||||
},
|
||||
{
|
||||
"name": "GitFive (T)",
|
||||
"type": "url",
|
||||
"url": "https://github.com/mxrch/GitFive"
|
||||
},
|
||||
{
|
||||
"name": "Sherlock",
|
||||
"type": "url",
|
||||
@@ -1576,6 +1581,11 @@
|
||||
"type": "url",
|
||||
"url": "https://www.lakako.com/"
|
||||
},
|
||||
{
|
||||
"name": "Lenso.ai",
|
||||
"type": "url",
|
||||
"url": "https://lenso.ai/"
|
||||
},
|
||||
{
|
||||
"name": "CC Search",
|
||||
"type": "url",
|
||||
@@ -5753,6 +5763,16 @@
|
||||
"name": "Wordlist",
|
||||
"type": "folder",
|
||||
"children": [
|
||||
{
|
||||
"name": "CeWL (T)",
|
||||
"type": "url",
|
||||
"url": "https://github.com/digininja/CeWL"
|
||||
},
|
||||
{
|
||||
"name": "Cupp (T)",
|
||||
"type": "url",
|
||||
"url": "https://github.com/Mebus/cupp"
|
||||
},
|
||||
{
|
||||
"name": "OWASP D4N155 (T)",
|
||||
"type": "url",
|
||||
|
||||
+1
-1
@@ -95,7 +95,7 @@ function update(source) {
|
||||
var nodeEnter = node.enter().append("g")
|
||||
.attr("class", "node")
|
||||
.attr("transform", function(d) { return "translate(" + source.y0 + "," + source.x0 + ")"; })
|
||||
.on("click", function(event, d) { toggle(d); update(d); zoomToNode(d); });
|
||||
.on("click", function(event, d) { toggle(d); update(d); });
|
||||
|
||||
nodeEnter.append("circle")
|
||||
.attr("r", 1e-6)
|
||||
|
||||
Reference in New Issue
Block a user