aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_hq.js
blob: ddcde4fcd1715b2dc12751f06791231a9901d9bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$(document).ready(function() {

	$(document).on('click', '#jot-toggle', function(e) {
		e.preventDefault();
		e.stopPropagation();
		$(window).scrollTop(0);
		$('#jot-popup').toggle();
		$('#profile-jot-text').focus();

	});

	$(document).on('click', '#notes-toggle', function(e) {
		e.preventDefault();
		e.stopPropagation();
		$(window).scrollTop(0);
		$('#personal-notes').toggleClass('d-none');
		$('#note-text').focus();
	});

});