diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx index 8b2b32581..e5933d47b 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx @@ -33,7 +33,7 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm } @observable currState: infoState; state0: infoState = { - Message: 'Click to create Object', + Message: 'Click anywhere and begin typing to create your first text document.', Arcs: [ { events: () => this.props.Freeform.childDocs.slice(), @@ -45,7 +45,7 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm ], }; state1: infoState = { - Message: 'Create a second doc', + Message: 'Hello world! Try creating a second document.', Arcs: [ { events: () => this.props.Freeform.childDocs.slice(), @@ -57,7 +57,7 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm ], }; state2: infoState = { - Message: 'Create a link', + Message: 'To create a link between them, click the link icon on both documents.', Arcs: [ { events: () => ({ links: this.first_doc && LinkManager.Instance.getAllDirectLinks(this.first_doc), docs: this.props.Freeform.childDocs.slice() }), @@ -72,7 +72,7 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm }; state3: infoState = { - Message: 'View links', + Message: 'You made your first link! You can view your links by selecting the blue dot.', Arcs: [ { events: () => ({ links: this.first_doc && LinkManager.Instance.getAllDirectLinks(this.first_doc), viewingLinks: DocumentLinksButton.LinkEditorDocView }), @@ -85,7 +85,7 @@ export class CollectionFreeFormInfoUI extends React.Component<CollectionFreeForm ], }; state4: infoState = { - Message: 'You did it!', + Message: 'Great work. You are now ready to create your own hypermedia world.', Arcs: [ { events: () => false, |