mirror of
https://github.com/zadam/trilium.git
synced 2025-02-23 22:44:44 +08:00
add info on read only notes, #1088
This commit is contained in:
parent
e73dffad0b
commit
401a3f0ecb
3 changed files with 6 additions and 8 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue