Added enable optimizations check.

This commit is contained in:
Liviu Codrut Stancu 2012-07-19 17:28:44 -07:00
Родитель add85c3102
Коммит 6cdea1ff7a
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -148,6 +148,8 @@
} }
var state = getState(); var state = getState();
enableVerifier.value = state.chkVerifier; enableVerifier.value = state.chkVerifier;
enableOpt.value = state.chkOptimizations;
function setState(state) { function setState(state) {
document.cookie = JSON.stringify(state); document.cookie = JSON.stringify(state);
} }
@ -159,6 +161,7 @@
Sys Compiler: <input type="checkbox" id="chkSysCompiler" value="" title="Enables the compiler for the System domain."/> Sys Compiler: <input type="checkbox" id="chkSysCompiler" value="" title="Enables the compiler for the System domain."/>
App Compiler: <input type="checkbox" id="chkAppCompiler" value="" title="Enables the compiler for the Application domain."/> App Compiler: <input type="checkbox" id="chkAppCompiler" value="" title="Enables the compiler for the Application domain."/>
Verifier: <input type="checkbox" id="chkVerifier" value="" /> Verifier: <input type="checkbox" id="chkVerifier" value="" />
Optimizations: <input type="checkbox" id="chkOptimizations" value="" />
</div> </div>
<script> <script>