CC-4440: System -> Streams: Update and Save 'Stream 1/2/3' will make it invisible

-fixed
This commit is contained in:
denise 2012-09-14 17:35:14 -04:00
parent 39903be69a
commit 84deda99c5
4 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<?php <?php
$s_name = "s".$this->stream_number; $s_name = "s".$this->stream_number;
?> ?>
<h3 class="collapsible-header <?php echo $this->stream_number == '1'?"close":""?>"><span class="arrow-icon"></span>Stream <?php echo $this->stream_number?></h3> <h3 class="collapsible-header <?php echo $this->stream_number == '1'?"closed":""?>"><span class="arrow-icon"></span>Stream <?php echo $this->stream_number?></h3>
<div class="stream-setting-content" <?php echo $this->enabled == 0?'style="display: none;':''?> id="<?php echo $s_name?>-config"> <div class="stream-setting-content" <?php echo $this->enabled == 0?'style="display: none;':''?> id="<?php echo $s_name?>-config">
<fieldset class="padded"> <fieldset class="padded">
<dl class="zend_form clearfix"> <dl class="zend_form clearfix">

View File

@ -1642,8 +1642,8 @@ span.errors.sp-errors{
top:8px; top:8px;
} }
.collapsible-header.close .arrow-icon, collapsible-header-disabled.close .arrow-icon { .collapsible-header.closed .arrow-icon, collapsible-header-disabled.close .arrow-icon {
background-position: 0 -11px; background-position: 0 -11px !important;
} }
#schedule-add-show .button-bar { #schedule-add-show .button-bar {

View File

@ -85,7 +85,7 @@ $(document).ready(function() {
$('.collapsible-header').live('click',function() { $('.collapsible-header').live('click',function() {
$(this).next().toggle('fast'); $(this).next().toggle('fast');
$(this).toggleClass("close"); $(this).toggleClass("closed");
return false; return false;
}).next().hide(); }).next().hide();

View File

@ -238,7 +238,7 @@ $(document).ready(function() {
$('.collapsible-header').click(function() { $('.collapsible-header').click(function() {
$(this).next().toggle('fast'); $(this).next().toggle('fast');
$(this).toggleClass("close"); $(this).toggleClass("closed");
return false; return false;
}) })