add info on read only notes, #1088

This commit is contained in:
zadam 2020-06-06 18:46:45 +02:00
parent e73dffad0b
commit 401a3f0ecb
3 changed files with 6 additions and 8 deletions

View file

@ -78,10 +78,8 @@ function setupGlobs() {
const wikiBaseUrl = "https://github.com/zadam/trilium/wiki/";
$(document).on("click", "button[data-help-page]", e => {
const $button = $(e.target);
window.open(wikiBaseUrl + $button.attr("data-help-page"), '_blank');
$(document).on("click", "*[data-help-page]", e => {
window.open(wikiBaseUrl + $(e.target).attr("data-help-page"), '_blank');
});
$("body").on("click", "a.external", function () {
@ -91,4 +89,4 @@ function setupGlobs() {
export default {
setupGlobs
}
}

View file

@ -14,7 +14,7 @@ const TPL = `
</style>
<div class="alert alert-warning no-print" style="margin-bottom: 0;">
Read only code view is shown. <a href="#" class="edit-note">Click here</a> to edit the note.
<a href="#" class="external" data-help-page="Read-only-note" title="Help on Read only notes">Read only</a> code view is shown. <a href="#" class="edit-note">Click here</a> to edit the note.
</div>
<pre class="note-detail-read-only-code-content"></pre>
@ -41,4 +41,4 @@ export default class ReadOnlyCodeTypeWidget extends TypeWidget {
this.$content.text(noteComplement.content);
}
}
}

View file

@ -29,7 +29,7 @@ const TPL = `
</style>
<div class="alert alert-warning no-print">
Read only text view is shown. <a href="#" class="edit-note">Click here</a> to edit the note.
<a href="#" class="external" data-help-page="Read-only-note" title="Help on Read only notes">Read only</a> text view is shown. <a href="#" class="edit-note">Click here</a> to edit the note.
</div>
<div class="note-detail-readonly-text-content ck-content"></div>