mirror of
https://github.com/zadam/trilium.git
synced 2024-11-12 02:37:39 +08:00
7 lines
No EOL
260 B
JavaScript
7 lines
No EOL
260 B
JavaScript
$(function() {
|
|
$(window).resize(function() {
|
|
$('div#tree').height($(window).height() - $('div#tree').offset().top);
|
|
$('div.note-editable').height($(window).height() - $('div.note-editable').offset().top);
|
|
});
|
|
$(window).resize();
|
|
}); |