Merge branch 'storageareas' into zma_to_thread
This commit is contained in:
commit
db0c10fad2
|
@ -289,20 +289,20 @@ for( $monitor_i = 0; $monitor_i < count($displayMonitors); $monitor_i += 1 ) {
|
||||||
<tr>
|
<tr>
|
||||||
<td class="colId"><?php echo count($displayMonitors) ?></td>
|
<td class="colId"><?php echo count($displayMonitors) ?></td>
|
||||||
<td class="colLeftButtons" colspan="<?php echo $left_columns -1?>">
|
<td class="colLeftButtons" colspan="<?php echo $left_columns -1?>">
|
||||||
<button name="addBtn" onclick="addMonitor(this);"
|
<button type="button" name="addBtn" onclick="addMonitor(this);"
|
||||||
<?php echo (canEdit('Monitors') && !$user['MonitorIds']) ? '' : ' disabled="disabled"' ?>
|
<?php echo (canEdit('Monitors') && !$user['MonitorIds']) ? '' : ' disabled="disabled"' ?>
|
||||||
>
|
>
|
||||||
<?php echo translate('AddNewMonitor') ?>
|
<?php echo translate('AddNewMonitor') ?>
|
||||||
</button>
|
</button>
|
||||||
<button name="cloneBtn" onclick="cloneMonitor(this);"
|
<button type="button" name="cloneBtn" onclick="cloneMonitor(this);"
|
||||||
<?php echo (canEdit('Monitors') && !$user['MonitorIds']) ? '' : ' disabled="disabled"' ?>
|
<?php echo (canEdit('Monitors') && !$user['MonitorIds']) ? '' : ' disabled="disabled"' ?>
|
||||||
style="display:none;">
|
style="display:none;">
|
||||||
<?php echo translate('CloneMonitor') ?>
|
<?php echo translate('CloneMonitor') ?>
|
||||||
</button>
|
</button>
|
||||||
<button name="editBtn" onclick="editMonitor(this);" disabled="disabled">
|
<button type="button" name="editBtn" onclick="editMonitor(this);" disabled="disabled">
|
||||||
<?php echo translate('Edit') ?>
|
<?php echo translate('Edit') ?>
|
||||||
</button>
|
</button>
|
||||||
<button name="deleteBtn" onclick="deleteMonitor(this);" disabled="disabled">
|
<button type="button" name="deleteBtn" onclick="deleteMonitor(this);" disabled="disabled">
|
||||||
<?php echo translate('Delete') ?>
|
<?php echo translate('Delete') ?>
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -219,8 +219,8 @@ xhtmlHeaders(__FILE__, translate('MontageReview') );
|
||||||
<div id="header">
|
<div id="header">
|
||||||
<?php echo $filter_bar ?>
|
<?php echo $filter_bar ?>
|
||||||
<div id="DateTimeDiv">
|
<div id="DateTimeDiv">
|
||||||
<input type="text" name="minTime" id="minTime" value="<?php echo preg_replace('/T/', ' ', $minTime ) ?>"> to
|
<input type="text" name="minTime" id="minTime" value="<?php echo preg_replace('/T/', ' ', $minTime ) ?>"/> to
|
||||||
<input type="text" name="maxTime" id="maxTime" value="<?php echo preg_replace('/T/', ' ', $maxTime ) ?>">
|
<input type="text" name="maxTime" id="maxTime" value="<?php echo preg_replace('/T/', ' ', $maxTime ) ?>"/>
|
||||||
</div>
|
</div>
|
||||||
<div id="ScaleDiv">
|
<div id="ScaleDiv">
|
||||||
<label for="scaleslider"><?php echo translate('Scale')?></label>
|
<label for="scaleslider"><?php echo translate('Scale')?></label>
|
||||||
|
|
Loading…
Reference in New Issue