doubleclick on the link to note will go there

This commit is contained in:
azivner 2017-10-05 20:08:15 -04:00
parent d5320bff0f
commit 3a60feae4d

View file

@ -66,6 +66,10 @@ $(document).on('click', 'div.popover-content a', function(e) {
goToInternalNote(e);
});
$(document).on('dblclick', '.note-editable a', function(e) {
goToInternalNote(e);
});
function goToInternalNote(e, callback) {
const targetUrl = $(e.target).attr("href");