2013-06-13 14:10:05 +00:00
|
|
|
function init() {
|
2013-07-24 01:14:40 +00:00
|
|
|
$(".alert_header").click(function() {
|
|
|
|
var expanderIcon = $(this).find("i.icon-chevron-down");
|
|
|
|
if (expanderIcon.length != 0) {
|
|
|
|
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();
|
|
|
|
});
|
2013-07-24 10:23:35 +00:00
|
|
|
|
|
|
|
$(".silence_alert_link, .silence_children_link").click(function() {
|
|
|
|
alert("Silencing is not yet supported.");
|
|
|
|
});
|
2013-06-13 14:10:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$(init);
|