mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2024-11-10 07:27:23 +01:00
debugged hidden div in unused render field, jquery working now
This commit is contained in:
parent
d646384e24
commit
55b612e244
@ -5,33 +5,38 @@ $(document).ready(function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
$( "#show_display_info" ).click(function() {
|
$( "#show_display_info" ).click(function() {
|
||||||
$( ".display_info" ).toggle();
|
$( "#formloader > div" ).hide();
|
||||||
$( ".add_subtitles").hide();
|
$( ".display_info" ).show();
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$( "#show_web" ).click(function() {
|
$( "#show_web" ).click(function() {
|
||||||
$( ".web" ).toggle();
|
$( "#formloader > div" ).hide();
|
||||||
|
$( ".web" ).show();
|
||||||
});
|
});
|
||||||
|
|
||||||
$( "#show_add_subtitles" ).click(function() {
|
$( "#show_add_subtitles" ).click(function() {
|
||||||
$( ".add_subtitles" ).toggle();
|
$( "#formloader > div" ).hide();
|
||||||
|
$( ".add_subtitles" ).show();
|
||||||
});
|
});
|
||||||
|
|
||||||
$( "#show_add_audio_track" ).click(function() {
|
$( "#show_add_audio_track" ).click(function() {
|
||||||
$( ".add_audio_track" ).toggle();
|
$( "#formloader > div" ).hide();
|
||||||
|
$( ".add_audio_track" ).show();
|
||||||
});
|
});
|
||||||
|
|
||||||
$( "#show_remove_audio_track" ).click(function() {
|
$( "#show_remove_audio_track" ).click(function() {
|
||||||
$( ".remove_audio_track" ).toggle();
|
$( "#formloader > div" ).hide();
|
||||||
|
$( ".remove_audio_track" ).show();
|
||||||
});
|
});
|
||||||
|
|
||||||
$( "#show_webm_for_web" ).click(function() {
|
$( "#show_webm_for_web" ).click(function() {
|
||||||
$( ".webm_for_web" ).toggle();
|
$( "#formloader > div" ).hide();
|
||||||
|
$( ".webm_for_web" ).show();
|
||||||
});
|
});
|
||||||
|
|
||||||
$( "#show_h264_for_web" ).click(function() {
|
$( "#show_h264_for_web" ).click(function() {
|
||||||
$( ".h264_for_web" ).toggle();
|
$( "#formloader > div" ).hide();
|
||||||
|
$( ".h264_for_web" ).show();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
@ -26,6 +26,4 @@
|
|||||||
<legend>Your command line:</legend>
|
<legend>Your command line:</legend>
|
||||||
<textarea name="command_line" id="command_line" rows="3" cols="100"></textarea>
|
<textarea name="command_line" id="command_line" rows="3" cols="100"></textarea>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div> <!-- container -->
|
|
Loading…
Reference in New Issue
Block a user