2017-08-16 10:32:30 +08:00
|
|
|
$(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();
|
2017-08-22 10:04:08 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
jQuery.hotkeys.options.filterInputAcceptingElements = true;
|
|
|
|
jQuery.hotkeys.options.filterContentEditable = true;
|
|
|
|
|
|
|
|
$(document).bind('keypress', 'alt+ctrl+h', function() {
|
|
|
|
const toggle = $(".hide-toggle");
|
|
|
|
|
|
|
|
toggle.css('visibility', toggle.css('visibility') === 'hidden' ? 'visible' : 'hidden');
|
2017-08-16 10:32:30 +08:00
|
|
|
});
|