]> git.mxchange.org Git - friendica.git/commitdiff
Show preview of the correct theme, not the mobile theme.
authorMichael Vogel <icarus@dabo.de>
Thu, 24 Apr 2014 10:14:45 +0000 (12:14 +0200)
committerMichael Vogel <icarus@dabo.de>
Thu, 24 Apr 2014 10:14:45 +0000 (12:14 +0200)
view/templates/field_themeselect.tpl

index cde744594becac0a2687b8da7a8ffadc768188fb..473623581511d52bc125d3d925ca7f20c624d81b 100644 (file)
@@ -3,12 +3,12 @@
  *     DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
  *
  *}}
-       <script>$(function(){ previewTheme($("#id_{{$field.0}}")[0]); });</script>
+       {{if $field.5}}<script>$(function(){ previewTheme($("#id_{{$field.0}}")[0]); });</script>{{/if}}
        <div class='field select'>
                <label for='id_{{$field.0}}'>{{$field.1}}</label>
                <select name='{{$field.0}}' id='id_{{$field.0}}' {{if $field.5}}onchange="previewTheme(this);"{{/if}} >
                        {{foreach $field.4 as $opt=>$val}}<option value="{{$opt}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
                </select>
                <span class='field_help'>{{$field.3}}</span>
-               <div id="theme-preview"></div>
+               {{if $field.5}}<div id="theme-preview"></div>{{/if}}
        </div>