Add a way to not check the stream checkbox by default (#255)
This commit is contained in:
parent
b3294b3dbc
commit
ced0c126f1
2 changed files with 2 additions and 1 deletions
|
@ -35,6 +35,7 @@ phantomjsDir: vendor/bin/
|
|||
uglyUrls: false
|
||||
|
||||
# True to stream videos through server
|
||||
# Set to "ask" if you want to allow it but not enable by default.
|
||||
stream: false
|
||||
|
||||
# True to enable remux mode (merge best audio and best video)
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
</select><br/><br/>
|
||||
{/if}
|
||||
{if $config->stream}
|
||||
<input type="checkbox" checked name="stream" id="stream"/>
|
||||
<input type="checkbox" {if $config->stream != 'ask'}checked{/if} name="stream" id="stream"/>
|
||||
<label for="stream">{t}Stream the video through the server{/t}</label>
|
||||
<br/><br/>
|
||||
{/if}
|
||||
|
|
Loading…
Reference in a new issue