diff options
| author | Alon Levy <alon@pobox.com> | 2015-08-04 11:05:11 +0300 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-08-04 11:05:11 +0300 |
| commit | 62851dd1aef97712de4e410c1cda5fc6cb51f7fe (patch) | |
| tree | 4039faafda410b79506b47fe565caaa93724d1a2 | |
| parent | f5b73a30bf84cb00ab7a25e553deb1b6656fed1d (diff) | |
client/view/layouts: put custom as default layout
| -rw-r--r-- | src/client/view/layouts.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/view/layouts.js b/src/client/view/layouts.js index 1a025a28..25a197e1 100644 --- a/src/client/view/layouts.js +++ b/src/client/view/layouts.js @@ -424,16 +424,16 @@ function(consts, $, d3, _) { var layouts = [ { - name: 'Force', - create: named('force', layout__d3_force__link_distance), + name: 'Custom', + create: named('custom', layout__d3_force__link_distance), clazz: 'btn_layout_d3_force' }, { - name: 'Custom', - create: named('custom', layout__d3_force__link_distance), + name: 'Force', + create: named('force', layout__d3_force__link_distance), clazz: 'btn_layout_d3_force' }, - { + { name: 'Ring', create: named('ring', layout__concentric), clazz: 'btn_layout_concentric' |
