aboutsummaryrefslogtreecommitdiff
path: root/src/controllers/TextController.ts
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-01-15 22:31:57 -0500
committerTyler Schicke <tyler_schicke@brown.edu>2019-01-15 22:31:57 -0500
commit89204d74d2a5014b4e241973b1bdb8461ed4f78c (patch)
tree4bf58acfdad603375953b2de3610dc946e569b71 /src/controllers/TextController.ts
parent3de39e2608e62a278b9c8cc37b53333f0877fa59 (diff)
More stuff set up
Diffstat (limited to 'src/controllers/TextController.ts')
-rw-r--r--src/controllers/TextController.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/controllers/TextController.ts b/src/controllers/TextController.ts
deleted file mode 100644
index 5d4b43170..000000000
--- a/src/controllers/TextController.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import { BasicFieldController } from "./BasicFieldController"
-import { FieldUpdatedAction } from "./FieldUpdatedArgs";
-
-export class TextController extends BasicFieldController<string> {
- constructor(data: string = "") {
- super(data);
- }
-
- Copy() {
- return new TextController(this.Data);
- }
-
-
-}