Skip to content

Commit

Permalink
! disabled development mode for release
Browse files Browse the repository at this point in the history
! showing scrollbar for charmm output files
  • Loading branch information
mhelmer committed Jul 20, 2016
1 parent c511053 commit 4f151b0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ public void sessionUnbound(String sessionId) {

@Override
public RuntimeConfigurationType getConfigurationType() {
return super.getConfigurationType();
if (settings.isDebuggingMode())
return RuntimeConfigurationType.DEVELOPMENT;
return RuntimeConfigurationType.DEPLOYMENT;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@ <h1>Visualising Output Files</h1>
<div class="col-md-6">
<h3>Output file for: Gas Phase</h3>
<div wicket:id="gasPhaseError"></div>
<span wicket:id="gasPhasePanel">[user data]</span>
<div style="height: 65vh;overflow-y: scroll;">
<span wicket:id="gasPhasePanel">[user data]</span>
</div>
</div>
<div class="col-md-6">
<h3>Output file for: Pure Liquid</h3>
<div wicket:id="liquidPhaseError"></div>
<span wicket:id="liquidPhasePanel">[user data]</span>
<div style="height: 65vh;overflow-y: scroll;">
<span wicket:id="liquidPhasePanel">[user data]</span>
</div>
</div>
</div>
</div>
Expand Down

0 comments on commit 4f151b0

Please sign in to comment.