Changed the chevron icon to a filter icon on "Montage review" page
parent
4702224dce
commit
dd8ef6b786
|
@ -271,10 +271,13 @@ getBodyTopHTML();
|
|||
<input type="hidden" name="view" value="montagereview"/>
|
||||
<div id="header">
|
||||
<?php
|
||||
$html = '';
|
||||
$flip = ( (!isset($_COOKIE['zmMonitorFilterBarFlip'])) or ($_COOKIE['zmMonitorFilterBarFlip'] == 'down')) ? 'up' : 'down';
|
||||
$html .= '<a class="flip" href="#"><i id="mfbflip" class="material-icons md-18">keyboard_arrow_' .$flip. '</i></a>'.PHP_EOL;
|
||||
$html .= '<div class="container-fluid" id="mfbpanel"'.( ( $flip == 'down' ) ? ' style="display:none;"' : '' ) .'>'.PHP_EOL;
|
||||
$html = '<a class="flip" href="#"
|
||||
data-flip-сontrol-object="#mfbpanel"
|
||||
data-flip-сontrol-run-after-func="applyChosen drawGraph"
|
||||
data-flip-сontrol-run-after-complet-func="changeScale">
|
||||
<i id="mfbflip" class="material-icons md-18" data-icon-visible="filter_alt_off" data-icon-hidden="filter_alt"></i>
|
||||
</a>'.PHP_EOL;
|
||||
$html .= '<div id="mfbpanel" class="hidden-shift container-fluid">'.PHP_EOL;
|
||||
echo $html;
|
||||
?>
|
||||
<?php echo $filter_bar ?>
|
||||
|
@ -328,7 +331,7 @@ if (count($filter->terms())) {
|
|||
<i class="material-icons" data-icon-visible="history_toggle_off" data-icon-hidden="schedule"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div id="timelinediv">
|
||||
<div id="timelinediv" class="hidden-shift">
|
||||
<canvas id="timeline"></canvas>
|
||||
<span id="scrubleft"></span>
|
||||
<span id="scrubright"></span>
|
||||
|
|
Loading…
Reference in New Issue