Skip to content
Snippets Groups Projects
Commit f99cd47a authored by Etienne Kneuss's avatar Etienne Kneuss
Browse files

Remove synthesis from leon-online

parent f0af67c7
No related branches found
No related tags found
No related merge requests found
...@@ -17,33 +17,15 @@ ...@@ -17,33 +17,15 @@
<div><textarea id="consolebox"></textarea></div> <div><textarea id="consolebox"></textarea></div>
</div> </div>
<div id="selectcolumn"> <div id="selectcolumn">
<input type="hidden" id="leon-mode" value=""> <input type="hidden" id="leon-mode" value="verification">
<div id="tabs"> <h3>Load an Example:</h3>
<a href="#verification">Verification</a> <div>We provide you with a list of code-examples, select one from the list below to load it:</div>
<a href="#synthesis">Synthesis</a> <select id="example-loader-verification" name="codeexample" onchange="loadExample('verification', '@prefix');">
</div> <option value="">-- Load Example --</option>
<div id="tabcontent"> @exs.zipWithIndex.collect{ case (ex, i) if ex.kind == "verification" =>
<div id="tab-synthesis" class="tab synthesis"> <option value="@i">@ex.title</option>
<h3>Load an Example:</h3> }
<div>We provide you with a list of code-examples, select one from the list below to load it:</div> </select>
<select id="example-loader-synthesis" name="codeexample" onchange="loadExample('synthesis', '@prefix');">
<option value="">-- Load Example --</option>
@exs.zipWithIndex.collect{ case (ex, i) if ex.kind == "synthesis" =>
<option value="@i">@ex.title</option>
}
</select>
</div>
<div id="tab-verification" class="tab verification">
<h3>Load an Example:</h3>
<div>We provide you with a list of code-examples, select one from the list below to load it:</div>
<select id="example-loader-verification" name="codeexample" onchange="loadExample('verification', '@prefix');">
<option value="">-- Load Example --</option>
@exs.zipWithIndex.collect{ case (ex, i) if ex.kind == "verification" =>
<option value="@i">@ex.title</option>
}
</select>
</div>
</div>
</div> </div>
</form> </form>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment