issue links to anchors merged
This commit is contained in:
commit
c450d83b29
12
radia.js
12
radia.js
|
@ -1,4 +1,8 @@
|
||||||
// var R;
|
// var R;
|
||||||
|
function supportsSvg() {
|
||||||
|
return document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#Shape", "1.0")
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function getNode(nodeKey) {
|
function getNode(nodeKey) {
|
||||||
var ret = false;
|
var ret = false;
|
||||||
|
@ -14,6 +18,10 @@ function getNode(nodeKey) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$(function() {
|
$(function() {
|
||||||
|
if (!supportsSvg) {
|
||||||
|
$('body').text("Sorry, your browser does not support Scalable Vector Graphics (SVG), which were used to make this page. Please use Firefox 4.0+ or Google Chrome if you wish to see this page. Thanks! Sorry for the trouble...");
|
||||||
|
return;
|
||||||
|
}
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
var svgAspect = 1220 / 560;
|
var svgAspect = 1220 / 560;
|
||||||
var windowWidth = $(window).width();
|
var windowWidth = $(window).width();
|
||||||
|
@ -62,7 +70,7 @@ $(function() {
|
||||||
var nodes = LINES[id];
|
var nodes = LINES[id];
|
||||||
// console.log(nodes);
|
// console.log(nodes);
|
||||||
for (var i=0; i<nodes.length; i++) {
|
for (var i=0; i<nodes.length; i++) {
|
||||||
console.log(nodes[i]);
|
// console.log(nodes[i]);
|
||||||
var $node = getNode(nodes[i]);
|
var $node = getNode(nodes[i]);
|
||||||
$node.highlightNode();
|
$node.highlightNode();
|
||||||
}
|
}
|
||||||
|
@ -82,7 +90,7 @@ $(function() {
|
||||||
var nodes = LINES[id];
|
var nodes = LINES[id];
|
||||||
// console.log(nodes);
|
// console.log(nodes);
|
||||||
for (var i=0; i<nodes.length; i++) {
|
for (var i=0; i<nodes.length; i++) {
|
||||||
console.log(nodes[i]);
|
// console.log(nodes[i]);
|
||||||
var $node = getNode(nodes[i]);
|
var $node = getNode(nodes[i]);
|
||||||
$node.unhighlightNode();
|
$node.unhighlightNode();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user