summaryrefslogtreecommitdiff
path: root/src/client/view/graph_view.js
AgeCommit message (Collapse)Author
2015-02-15client: node_info cleanup: still missing edge cases (edits/deletes while open)Alon Levy
2015-02-15add underscore, implement ctrl-click to append to selectionAlon Levy
2015-02-09graph_view: miscLV-426
2015-02-09graph_view: partial fix to prevent filter menu close on list item clickLV-426
2015-02-09graph_view: adjust to new filter menu id's, use .toggle() for menu hidingLV-426
2015-02-06filter by node type: fix broken edit graphAlon Levy
2015-02-06client: bacon not loaded, use jquery instead (demo hack)Alon Levy
2015-02-06client/graph_view: set checkboxes callback on load to avoid race with DOM ↵Alon Levy
creation
2015-02-06client/graph_view: filter drop down implementation, really ugly. #306Alon Levy
2015-02-06client/filter: now with force layout awareness. Fixes #306 almostAlon Levy
2015-02-06client: graph_view: filter initial. does not affect layout, only visibilityAlon Levy
2015-02-05client: fix fallout from main/edit zoom differenceAlon Levy
2015-02-05client/graph_view: apply zoom of each node individuallyAlon Levy
Fixes #308 Hack for friday. Hack being that the model Node gets a 'zoom_obj' property. This belongs on a new NodeView class that will contain a reference to the node and the zoom object. Also I'm worried about performance of this (well, just a little), have not tested with something large yet.
2015-02-05client/graph_view: pass in zoom objects for self (unused) and parentAlon Levy
2015-02-05client/graph_view: merge zoom and relayout events to redraw busAlon Levy
Note that using 'on' overwrites the previous callback, using namespaces ('zoom.graph_view') doesn't help. So store the previous callback (the zoom function in rz_core in this case) and apply it.
2015-01-29client: fix links to open in new tab; Fixes #295Alon Levy
2015-01-27client: make link hover show the urlAlon Levy
2015-01-27client: remove state variable in node view and use bacon property insteadAlon Levy
2015-01-21client: don't show dialog on topo diffs: Fixes #285Alon Levy
2015-01-21client: Fixes #79 , node name should be fully shown regardless of length ↵Alon Levy
when selected
2015-01-21client: fix url link icon on node editAlon Levy
2015-01-21client: fix bubble not affecting link textAlon Levy
2015-01-21Fixes #294 - make selection ignore temporary nodes (bad implementation)Alon Levy
Should have two functions for node+link class setting, one for temporary, one for not, instead of passing this constant (since construction time) value along.
2015-01-21Return of the bubble. Fixes #253Alon Levy
2015-01-21Fixes #295 adding a link next to node names with urlsAlon Levy
Note about implementation: we currently update all the nodes for multiple things, we should not do that, we have id's on each node, we can do less work. Another option is using the visualdom and letting it do the diffs. Actually we should test first. Which brings me to the missing functionality of loading a large csv.
2015-01-21client/view/graph_view: add debugging helper to show diffsAlon Levy
2015-01-11client/graph_view: root links in link_group regardless of selection, Fixes #207Alon Levy
2015-01-11client/view/graph_view: add missing semicolonAlon Levy
2015-01-11client/graph_view: disable reordering of links for now; Fixes #213Alon Levy
2015-01-11client/graph_view: set linktext class on update_viewAlon Levy
2015-01-11client/selection: add link_selected, use it for linktextAlon Levy
2015-01-11client/graph_view: remove unused parameter in showNodeInfoAlon Levy
2015-01-06client: fix tab switching; move to new tokenize implementation (not strictly ↵Alon Levy
""right""
2015-01-06client: adapt to new node_id_set_add and link_id_set_add, renames all aroundAlon Levy
2015-01-06client/graph_view: remove debug prints from animation codeAlon Levy
2015-01-06client/graph_view: better animationAlon Levy
2015-01-05client: remove console logs and fix some undeclared variables (ff warnings)Alon Levy
2015-01-05client: link removal to server works, missing update of clientAlon Levy
2015-01-05client/view/graph_view: partial fix for link text not showingAlon Levy
2015-01-05client: fix link selection (still have links appearing above nodes)Alon Levy
2015-01-05client/view/graph_view: fix inter graph links with bubble, export ↵Alon Levy
bubble_radius from GraphView
2015-01-05client/view/graph_view: fix graph move on empty click regressionAlon Levy
2015-01-05client/bubble: nicer effect - instead of moving everything, just move close ↵Alon Levy
nodes
2015-01-05client: renames (find - all are lower case underscore separates) plus ↵Alon Levy
clone+input-to-diff to db and back flow working
2015-01-05animation for invisible bubble (will return the bubble later to edit graph)Alon Levy
2015-01-05bubble property used, lacks animation (noticeably)Alon Levy
2015-01-05initial graph_view introduction - mixing circle & force layoutsAlon Levy