diff options
| author | MaZderMind | 2016-12-10 11:32:37 +0100 | 
|---|---|---|
| committer | MaZderMind | 2016-12-10 11:32:52 +0100 | 
| commit | e4141027ad16565b95d64ea262e6909a64cd6e1f (patch) | |
| tree | 0660d9060d6d79510a32b802b7f0d27b5d71c90b | |
| parent | 44ac76a012bf68b5354eaab4486a102c2347e68e (diff) | |
always select 1024x embed code as default, fixes #29
| -rw-r--r-- | template/assemblies/embed-form.phtml | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/template/assemblies/embed-form.phtml b/template/assemblies/embed-form.phtml index 424d63a..721d886 100644 --- a/template/assemblies/embed-form.phtml +++ b/template/assemblies/embed-form.phtml @@ -10,11 +10,11 @@  			<select id="size" class="form-control">  				<option value="512,288">512×288</option>  				<option value="800,450">800×450</option> -				<option <? if($stream->getSelection() == 'sd'): ?>selected<? endif ?> value="1024,576">1024×576</option> +				<option selected value="1024,576">1024×576</option>  				<? if($stream->getSelection() == 'hd'): ?>  					<option value="1280,720">1280×720</option> -					<option selected value="1920,1080">1920×1080</option> +					<option value="1920,1080">1920×1080</option>  				<? endif ?>  			</select>  | 
