2017-08-15 22:32:30 -04: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-21 22:04:08 -04: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-15 22:32:30 -04:00
|
|
|
});
|