remove the thumbnail col if WEB_LIST_THUMBS is off
This commit is contained in:
parent
824f38c746
commit
3d795be864
|
@ -68,7 +68,7 @@ function processRows(rows) {
|
||||||
row.Frames = '<a href="?view=frames&eid=' + eid + '">' + row.Frames + '</a>';
|
row.Frames = '<a href="?view=frames&eid=' + eid + '">' + row.Frames + '</a>';
|
||||||
row.AlarmFrames = '<a href="?view=frames&eid=' + eid + '">' + row.AlarmFrames + '</a>';
|
row.AlarmFrames = '<a href="?view=frames&eid=' + eid + '">' + row.AlarmFrames + '</a>';
|
||||||
row.MaxScore = '<a href="?view=frame&eid=' + eid + '&fid=0">' + row.MaxScore + '</a>';
|
row.MaxScore = '<a href="?view=frame&eid=' + eid + '&fid=0">' + row.MaxScore + '</a>';
|
||||||
row.Thumbnail = '<a href="?view=event&eid=' + eid + filterQuery + sortQuery + '&page=1">' + row.imgHtml + '</a>';
|
if ( WEB_LIST_THUMBS ) row.Thumbnail = '<a href="?view=event&eid=' + eid + filterQuery + sortQuery + '&page=1">' + row.imgHtml + '</a>';
|
||||||
});
|
});
|
||||||
|
|
||||||
return rows;
|
return rows;
|
||||||
|
@ -161,6 +161,9 @@ function getEventDetailModal(eid) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function initPage() {
|
function initPage() {
|
||||||
|
// Remove the thumbnail column from the DOM if thumbnails are off globally
|
||||||
|
if ( !WEB_LIST_THUMBS ) $j('th[data-field="Thumbnail"]').remove();
|
||||||
|
|
||||||
// Load the delete confirmation modal into the DOM
|
// Load the delete confirmation modal into the DOM
|
||||||
getDelConfirmModal();
|
getDelConfirmModal();
|
||||||
|
|
||||||
|
|
|
@ -11,3 +11,4 @@ var archivedString = "<?php echo translate('Archived') ?>";
|
||||||
var emailedString = "<?php echo translate('Emailed') ?>";
|
var emailedString = "<?php echo translate('Emailed') ?>";
|
||||||
var yesString = "<?php echo translate('Yes') ?>";
|
var yesString = "<?php echo translate('Yes') ?>";
|
||||||
var noString = "<?php echo translate('No') ?>";
|
var noString = "<?php echo translate('No') ?>";
|
||||||
|
var WEB_LIST_THUMBS = <?php echo ZM_WEB_LIST_THUMBS?'true':'false' ?>;
|
||||||
|
|
Loading…
Reference in New Issue