diff --git a/src/app/components/nodes/markdown/markdown.component.ts b/src/app/components/nodes/markdown/markdown.component.ts index 2b46800..00bae81 100644 --- a/src/app/components/nodes/markdown/markdown.component.ts +++ b/src/app/components/nodes/markdown/markdown.component.ts @@ -17,8 +17,8 @@ export class MarkdownComponent extends EditorNodeContract implements OnInit { @ViewChild('editorContainer') editorContainer: ElementRef; // public isFocused = false; - public initialValue = 'Click to edit...'; - protected savedValue = 'Click to edit...'; + public initialValue = 'Double-click to edit...'; + protected savedValue = 'Double-click to edit...'; public contents = ''; private dirtyOverride = false; public showEditor = false; diff --git a/src/app/components/nodes/norm/norm.component.ts b/src/app/components/nodes/norm/norm.component.ts index 2dcfad1..3992d3a 100644 --- a/src/app/components/nodes/norm/norm.component.ts +++ b/src/app/components/nodes/norm/norm.component.ts @@ -16,15 +16,15 @@ export class NormComponent extends EditorNodeContract implements OnInit, OnDestr @Input() nodeId: string; @Input() editorUUID?: string; - public initialValue = 'Click to edit...'; - protected savedValue = 'Click to edit...'; + public initialValue = 'Double-click to edit...'; + protected savedValue = 'Double-click to edit...'; public contents = ''; private dirtyOverride = false; private editorGroupSocket?: FlitterSocketConnection; public editorGroupUsers: Array<{uuid: string, uid: string, display: string, color: string}> = []; public editorGroupId?: string; - protected editingUserSelections: Array = []; + public editingUserSelections: Array = []; public requestSelectionRefresh = () => this.refreshRemoteSelections(); diff --git a/src/app/structures/PageRecord.ts b/src/app/structures/PageRecord.ts index e43485a..b0a43f9 100644 --- a/src/app/structures/PageRecord.ts +++ b/src/app/structures/PageRecord.ts @@ -25,7 +25,7 @@ export default class PageRecord { public PageType: 'page' | 'form' = 'page'; public AdditionalData: any; - constructor(data: any = {Name: 'Click to edit...'}) { + constructor(data: any = {Name: 'Double-click to edit...'}) { [ 'UUID', 'Name',