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");
|
|
|
|
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 03:23:35 -07:00
|
|
|
|
|
|
|
$(".silence_alert_link, .silence_children_link").click(function() {
|
|
|
|
alert("Silencing is not yet supported.");
|
|
|
|
});
|
2013-06-13 07:10:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
$(init);
|