2013-06-13 07:10:05 -07:00
|
|
|
function init() {
|
2013-07-23 18:14:40 -07:00
|
|
|
$(".alert_header").click(function() {
|
|
|
|
var expanderIcon = $(this).find("i.icon-chevron-down");
|
2015-11-11 11:04:37 -08:00
|
|
|
if (expanderIcon.length !== 0) {
|
2013-07-23 18:14:40 -07:00
|
|
|
expanderIcon.removeClass("icon-chevron-down").addClass("icon-chevron-up");
|
|
|
|
} else {
|
|
|
|
var collapserIcon = $(this).find("i.icon-chevron-up");
|
|
|
|
collapserIcon.removeClass("icon-chevron-up").addClass("icon-chevron-down");
|
|
|
|
}
|
|
|
|
$(this).next().toggle();
|
|
|
|
});
|
2018-03-01 07:26:36 -08:00
|
|
|
|
2018-03-09 05:39:28 -08:00
|
|
|
$("div.show-annotations").click(function() {
|
|
|
|
const targetEl = $('div.show-annotations');
|
|
|
|
const icon = $(targetEl).children('i');
|
2018-03-01 07:26:36 -08:00
|
|
|
|
2018-03-09 05:39:28 -08:00
|
|
|
if (icon.hasClass('glyphicon-unchecked')) {
|
|
|
|
$(".alert_annotations").show();
|
|
|
|
$(".alert_annotations_header").show();
|
|
|
|
$(targetEl).children('i').removeClass('glyphicon-unchecked').addClass('glyphicon-check');
|
|
|
|
targetEl.addClass('is-checked');
|
|
|
|
} else if (icon.hasClass('glyphicon-check')) {
|
|
|
|
$(".alert_annotations").hide();
|
|
|
|
$(".alert_annotations_header").hide();
|
|
|
|
$(targetEl).children('i').removeClass('glyphicon-check').addClass('glyphicon-unchecked');
|
|
|
|
targetEl.removeClass('is-checked');
|
2018-03-01 07:26:36 -08:00
|
|
|
}
|
|
|
|
});
|
2013-06-13 07:10:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
$(init);
|