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