mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-09 08:24:25 +08:00
11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
function listToggleShow() {
|
|
$('#triangleDown').show();
|
|
$('#triangleRight').hide();
|
|
$('#accountNavigation').show();
|
|
}
|
|
|
|
function listToggleHide() {
|
|
$('#triangleDown').hide();
|
|
$('#triangleRight').show();
|
|
$('#accountNavigation').hide();
|
|
}
|