45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
$(document).ready(function() {
|
|
var dropbox = $("#droplist");
|
|
|
|
function loadMessages() {
|
|
$("#messages-new").fadeOut("slow");
|
|
$("#new-messages").delay(700).fadeIn("slow");
|
|
}
|
|
|
|
function loadOldMessages() {
|
|
$("#old-messages").fadeIn("slow");
|
|
}
|
|
|
|
$(document).click(function() {
|
|
var dl = dropbox.css("height");
|
|
var dl2 = dropbox.css("display");
|
|
if ((dl2 == "block")&&(dl == "91px")) {
|
|
dropbox.slideUp("slow");
|
|
}
|
|
|
|
});
|
|
|
|
$('.data-expander').on('click', function(e) {
|
|
var $button = $(e.target);
|
|
var id = "#content-" + $button.attr('id');
|
|
var $slider = $(id);
|
|
$slider.slideToggle("slow", function(){
|
|
$button.toggleClass('expanded collapsed');
|
|
});
|
|
});
|
|
|
|
function showActivity(elem) {
|
|
$("#activity-bottom"+elem).slideToggle("slow");
|
|
var img = document.getElementById("expand" + elem).className;
|
|
if (img == "expand-gray-down") {
|
|
document.getElementById("expand" + elem).className = "expand-gray-up";
|
|
} else {
|
|
document.getElementById("expand" + elem).className = "expand-gray-down";
|
|
}
|
|
}
|
|
|
|
$('div.information > div.user').on('click', function() {
|
|
dropbox.slideToggle("slow");
|
|
});
|
|
});
|