diff options
| author | Samarth Agarwal <samarth.agarwal@mail.utoronto.ca> | 2019-03-29 18:04:33 +0000 |
|---|---|---|
| committer | Samarth Agarwal <samarth.agarwal@mail.utoronto.ca> | 2019-03-29 18:04:33 +0000 |
| commit | a062626028fb80b5ab6b61af65d88ca9b7140243 (patch) | |
| tree | 3aaedd2053b6c3071aaf767df4fd6d61261b83de /web/models/points.js | |
| parent | bab72114837b27eb939d5d9838b788f132478ce8 (diff) | |
Implemented feature so that whenever a point is clicked a red dot shows up at its base to focus on it and the screen zooms to put the point in the center.
Diffstat (limited to 'web/models/points.js')
| -rw-r--r-- | web/models/points.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web/models/points.js b/web/models/points.js index d27f2a7..28d43b7 100644 --- a/web/models/points.js +++ b/web/models/points.js @@ -10,7 +10,8 @@ var JsonSchema = new Schema({ race: String, longhair: Boolean, longbeard: Boolean, - extra: String + extra: String, + status: {type: String, default: "new"} }); // Mongoose Model definition |
