mirror of
https://github.com/zadam/trilium.git
synced 2025-10-29 09:16:45 +01:00
7 lines
260 B
JavaScript
7 lines
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();
|
||
|
|
});
|