Skip to content

Commit

Permalink
Making controls pane not resizable. Closes #783
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsielicki committed Nov 6, 2017
1 parent 91681a9 commit efc2bd8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions web-server/plugins/slycat-back-button-test/js/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ define("slycat-cca-model", ["slycat-server-root", "slycat-web-client", "slycat-d
north:
{
size: 28,
resizable: false,
},
west:
{
Expand Down
3 changes: 3 additions & 0 deletions web-server/plugins/slycat-cca/css/ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -331,4 +331,7 @@ a
{
max-height: 500px;
overflow-y: auto;
}
#controls-pane .center {
margin: 2px 0;
}
1 change: 1 addition & 0 deletions web-server/plugins/slycat-cca/js/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ define("slycat-cca-model", ["slycat-server-root", "slycat-web-client", "slycat-d
north:
{
size: 28,
resizable: false,
},
west:
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ $("#parameter-image-plus-layout").layout(
{
north:
{
size: 28
size: 28,
resizable: false,
},
center:
{
Expand Down
1 change: 1 addition & 0 deletions web-server/plugins/slycat-parameter-image/js/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ layout = $("#parameter-image-plus-layout").layout(
north:
{
size: 28,
resizable: false,
},
center:
{
Expand Down
1 change: 1 addition & 0 deletions web-server/plugins/slycat-timeseries-model/js/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ var bodyLayout = $("#timeseries-model").layout({
north :
{
size: 28,
resizable: false,
resizeWhileDragging : false,
},
west :
Expand Down

0 comments on commit efc2bd8

Please sign in to comment.