aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralinayejin <alina_kim@brown.edu>2023-12-06 23:31:19 -0500
committeralinayejin <alina_kim@brown.edu>2023-12-06 23:31:19 -0500
commitd39b3633f3ae1864c89be47b358624e059342d66 (patch)
tree0916e46af479520b7168fc17c9ac037cd015ca53
parentcd9ad39d3a1cafc410c7a04ce6ed44cc926175de (diff)
update messages
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormInfoUI.tsx10
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,