aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/DocumentTypes.ts
diff options
context:
space:
mode:
authorAubrey-Li <63608597+Aubrey-Li@users.noreply.github.com>2021-07-29 17:36:46 -0700
committerAubrey-Li <63608597+Aubrey-Li@users.noreply.github.com>2021-07-29 17:36:46 -0700
commit928da698fc34e3f9fcc8c0df4d109fe411e5324e (patch)
tree9d18484003c8a0a03e91ef98839a97dc4215e02b /src/client/documents/DocumentTypes.ts
parent5a76f418923c9421d2fa72f1e661dceeb261487e (diff)
parentb6b2057cf28e8c0d3c22b9056074fe5155602d0a (diff)
Merge branch 'master' into trails-aubrey
Diffstat (limited to 'src/client/documents/DocumentTypes.ts')
-rw-r--r--src/client/documents/DocumentTypes.ts29
1 files changed, 12 insertions, 17 deletions
diff --git a/src/client/documents/DocumentTypes.ts b/src/client/documents/DocumentTypes.ts
index 5bd5590b7..19e469637 100644
--- a/src/client/documents/DocumentTypes.ts
+++ b/src/client/documents/DocumentTypes.ts
@@ -14,17 +14,15 @@ export enum DocumentType {
SCREENSHOT = "screenshot",
FONTICON = "fonticonbox",
FILTER = "filter",
- SEARCH = "search",
- LABEL = "label",
- BUTTON = "button",
- WEBCAM = "webcam",
- HTMLANCHOR = "htmlanchor",
- DATE = "date",
- SCRIPTING = "script",
- EQUATION = "equation",
- FUNCPLOT = "funcplot",
- MAP = "map",
-
+ SEARCH = "search", // search query
+ LABEL = "label", // simple text label
+ BUTTON = "button", // onClick button
+ WEBCAM = "webcam", // webcam
+ MARKER = "marker", // generic marker document not intended to be viewed independently of its context (e.g., for text selections in PDF/Web/RTF)
+ DATE = "date", // calendar view of a date
+ SCRIPTING = "script", // script editor
+ EQUATION = "equation", // equation editor
+ FUNCPLOT = "funcplot", // function plotter
// special purpose wrappers that either take no data or are compositions of lower level types
LINK = "link",
@@ -39,10 +37,7 @@ export enum DocumentType {
COMPARISON = "comparison",
GROUP = "group",
- LINKDB = "linkdb",
- SCRIPTDB = "scriptdb",
- GROUPDB = "groupdb",
-
- TEXTANCHOR = "textanchor" // selection of text in a text box
- ,
+ LINKDB = "linkdb", // database of links ??? why do we have this
+ SCRIPTDB = "scriptdb", // database of scripts
+ GROUPDB = "groupdb", // database of groups
} \ No newline at end of file