You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
somehow (maybe due to the graphml specification) the attribute "type" is not recognized as an edge attribute. Therefore line 167 settings[$data.attr("type")][$data.attr("key")] = $data.text();
can't work. Obviously the type-attribute isn't set in line 95.
Therefore i solved this by directly accessing the data-field:
settings["data"][$data.attr("key")] = $data.text();
This is not pretty and not very flexible but it works for me.
Kind regards
Bastian
The text was updated successfully, but these errors were encountered:
Hello,
somehow (maybe due to the graphml specification) the attribute "type" is not recognized as an edge attribute. Therefore line 167
settings[$data.attr("type")][$data.attr("key")] = $data.text();
can't work. Obviously the type-attribute isn't set in line 95.
Therefore i solved this by directly accessing the data-field:
settings["data"][$data.attr("key")] = $data.text();
This is not pretty and not very flexible but it works for me.
Kind regards
Bastian
The text was updated successfully, but these errors were encountered: