summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/skeleton.html
diff options
context:
space:
mode:
authorshefali shetty <sshefali44@gmail.com>2012-06-05 12:30:30 +0530
committershefali shetty <sshefali44@gmail.com>2012-06-05 12:30:30 +0530
commit82569b9cb412b509d88de55bd3f15a9499dfe76e (patch)
tree0cc683df6fb76a4a4970d40de31a7009ee4f9b9d /gstudio/templates/gstudio/skeleton.html
parent0b68a79e273b2bb876eaa38a1739e94d3db8c3d2 (diff)
downloadgnowsys-82569b9cb412b509d88de55bd3f15a9499dfe76e.tar.gz
collapsing done with ctrl+click event
Diffstat (limited to 'gstudio/templates/gstudio/skeleton.html')
-rw-r--r--gstudio/templates/gstudio/skeleton.html13
1 files changed, 8 insertions, 5 deletions
diff --git a/gstudio/templates/gstudio/skeleton.html b/gstudio/templates/gstudio/skeleton.html
index f8e366f..6991304 100644
--- a/gstudio/templates/gstudio/skeleton.html
+++ b/gstudio/templates/gstudio/skeleton.html
@@ -349,7 +349,7 @@ $(window).bind('keydown',function(event) {
- if(d._id>0 && d.expanded=="true")
+ if(d._id>0 && d.expanded=="true" && d._id!= {{object.id}})
{
$.getJSON('/nodetypes/graphs/graph_json/' + d._id , function (json2) {
@@ -393,7 +393,7 @@ $(window).bind('keydown',function(event) {
metadata=_.union(new_metadata,metadata);
relations=_.union(new_relations,relations);
- check_Relationtype(metadata,relations);
+ relations= check_Relationtype(metadata,relations);
}});
}
@@ -420,7 +420,7 @@ $(window).bind('keydown',function(event) {
- else if(d._id>0)
+ else if(d._id>0 && d._id!= {{object.id}})
{
neighbour_node =neighbour_node.concat(d._id);
@@ -438,7 +438,7 @@ $(window).bind('keydown',function(event) {
metadata=_.union(new_metadata,metadata);
relations=_.union(new_relations,relations);
- check_Relationtype(metadata,relations);
+ relations= check_Relationtype(metadata,relations);
_.each(metadata, function(m){
for(i=0;i<neighbour_node.length;i++)
@@ -557,7 +557,9 @@ $(window).bind('keydown',function(event) {
function check_Relationtype(metadata,relations)
{
- _.each(metadata,function(d){
+
+
+ _.each(metadata,function(d){
if (d.refType=="Relationtype")
{
a=d.inverse;
@@ -578,6 +580,7 @@ function check_Relationtype(metadata,relations)
}
});
+return relations;
}