mirror of
https://github.com/doocs/md.git
synced 2024-11-25 03:18:36 +08:00
5 lines
88 B
JavaScript
5 lines
88 B
JavaScript
|
// 加载完成隐藏 loading 界面
|
||
|
window.onload = () => {
|
||
|
$('#loading').hide();
|
||
|
};
|