diff options
| author | Alon Levy <alon@pobox.com> | 2015-05-12 12:20:27 +0300 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-05-12 12:30:17 +0300 |
| commit | 1a2b6af256be5c3e0f67a3a4741a7320890b2718 (patch) | |
| tree | 7aa0a2093cb3f22b4332cffe36753089395b394e /src/client | |
| parent | 23ce1eb42336375683907ca133008e44ab14704d (diff) | |
client/view/selection: ECMA-5 does not support named parameters, although it doesn't complain either
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/view/selection.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/view/selection.js b/src/client/view/selection.js index 23c0f31a..680695b7 100644 --- a/src/client/view/selection.js +++ b/src/client/view/selection.js @@ -73,8 +73,8 @@ function listen_on_diff_bus(diffBus) return get_main_graph().find_link__by_id(n.id) !== null; }); // reselect based on current graph - inner_select(new_selected_nodes=new_selected_nodes, new_related_nodes=new_related_nodes, - new_selected_links=new_selected_links, new_related_links=new_related_links); + inner_select(new_selected_nodes, new_related_nodes, + new_selected_links, new_related_links); }); } |
