展开/收缩效果

pull/180/head
Ekkles 2019-10-26 00:43:25 +13:00 committed by GitHub
parent e3515c2f6b
commit 309434e2b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -471,10 +471,10 @@ function timeSeriesReload(flag) {
var al_expand_collapse_click = 0;
$('#al_expand_collapse').click(function () {
if (al_expand_collapse_click == 0) {
$al_post_list.show();
$al_post_list.show(400);
al_expand_collapse_click++;
} else if (al_expand_collapse_click == 1) {
$al_post_list.hide();
$al_post_list.hide(400);
al_expand_collapse_click--;
}
});