Fix bug.
This commit is contained in:
parent
8e38343f22
commit
2fa82ac0f2
|
@ -6,12 +6,13 @@
|
|||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
if($("#page_layout").val() == "archive_index12"){
|
||||
var has_expanded_layouts = ['archive_index2', 'archive_index4', 'archive_index12', 'archive_index14'];
|
||||
if($.inArray($("#page_layout").val(), has_expanded_layouts) != -1){
|
||||
$(".archive_expanded").addClass("show").removeClass("hide");
|
||||
}
|
||||
$("#page_layout").change(function(){
|
||||
var value = $(this).val();
|
||||
if(value == "archive_index12"){
|
||||
if($.inArray(value, has_expanded_layouts) != -1){
|
||||
$(".archive_expanded").addClass("show").removeClass("hide");
|
||||
}else{
|
||||
$(".archive_expanded").removeClass("show").addClass("hide");
|
||||
|
|
Loading…
Reference in New Issue