diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-02-22 01:04:55 -0500 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-02-22 01:04:55 -0500 |
commit | 1c73798b14bc91e59ab95225b341008271d0159a (patch) | |
tree | f4b71e763f6dadbf4c47b5618d9c383290b1aeb1 /src/server/authentication/models/current_user_utils.ts | |
parent | c53d6c5df8b98bcf1c88316312497ea4198ae30a (diff) |
removed LinkFollow box.
Diffstat (limited to 'src/server/authentication/models/current_user_utils.ts')
-rw-r--r-- | src/server/authentication/models/current_user_utils.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/server/authentication/models/current_user_utils.ts b/src/server/authentication/models/current_user_utils.ts index 32439757c..8fe2257fc 100644 --- a/src/server/authentication/models/current_user_utils.ts +++ b/src/server/authentication/models/current_user_utils.ts @@ -265,8 +265,6 @@ export class CurrentUserUtils { // sets up the default set of documents to be shown in the Overlay layer static setupOverlays(doc: Doc) { doc.overlays = Docs.Create.FreeformDocument([], { title: "Overlays", backgroundColor: "#aca3a6" }); - doc.linkFollowBox = Docs.Create.LinkFollowBoxDocument({ x: 250, y: 20, _width: 500, _height: 370, title: "Link Follower" }); - Doc.AddDocToList(doc.overlays as Doc, "data", doc.linkFollowBox as Doc); } // the initial presentation Doc to use |