mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2024-11-06 13:37:24 +01:00
gave up on ajax and toggling forms for now which might be better anyway because of access
This commit is contained in:
parent
925c7af1c9
commit
bc18c291a7
@ -5,12 +5,11 @@
|
||||
|
||||
<div class="well">
|
||||
<fieldset>
|
||||
<legend>First form</legend>
|
||||
<!-- First we need a select question option... form or not? -->
|
||||
<h4>What do you want to do?</h4>
|
||||
<legend>What do you want to do?</legend>
|
||||
<h3>Select from the following.</h3>
|
||||
<ul>
|
||||
<li>
|
||||
Display info
|
||||
<div id="show_display_info">Display info</div>
|
||||
</li>
|
||||
<li>Export for web</li>
|
||||
<li>Add subtitles track</li>
|
||||
@ -20,13 +19,16 @@
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<!-- todo: yield for form depending on choice above -->
|
||||
|
||||
<div class="formloader">
|
||||
<%= render "display" %>
|
||||
<div id="formloader">
|
||||
<div class="display_info" style="display:none;">
|
||||
<%= render "display_info" %>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <%= render "web" %> -->
|
||||
|
||||
<%#= render "web" %>
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
$( "#show_display_info" ).click(function() {
|
||||
$( ".display_info" ).toggle();
|
||||
});
|
||||
</script>
|
Loading…
Reference in New Issue
Block a user