aboutsummaryrefslogtreecommitdiff
path: root/src/server/authentication/models/current_user_utils.ts
diff options
context:
space:
mode:
authorandrewdkim <adkim414@gmail.com>2020-02-11 22:47:23 -0500
committerandrewdkim <adkim414@gmail.com>2020-02-11 22:47:23 -0500
commit864cba561db8e26240b093da7ab524e76c8823d1 (patch)
tree48b38cb97701d5c423abe16dca924d81d7df48e1 /src/server/authentication/models/current_user_utils.ts
parent47b939e9799da2f57047a15113c116d8ba31ce5e (diff)
small fixes for mobile remote upload
Diffstat (limited to 'src/server/authentication/models/current_user_utils.ts')
-rw-r--r--src/server/authentication/models/current_user_utils.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/authentication/models/current_user_utils.ts b/src/server/authentication/models/current_user_utils.ts
index aa9f3649e..6c916689a 100644
--- a/src/server/authentication/models/current_user_utils.ts
+++ b/src/server/authentication/models/current_user_utils.ts
@@ -161,9 +161,8 @@ export class CurrentUserUtils {
const uploadDoc = Docs.Create.StackingDocument([], {
title: "Mobile Upload Collection", backgroundColor: "white", lockedPosition: true
});
- console.log(window.innerWidth, screen.width, window.devicePixelRatio);
return Docs.Create.StackingDocument([webDoc, uploadDoc], {
- columnWidth: screen.width - 10, lockedPosition: true, _chromeStatus: "disabled", title: "Upload", _autoHeight: true, _yMargin: 80, backgroundColor: "lightgray"
+ _width: screen.width, lockedPosition: true, _chromeStatus: "disabled", title: "Upload", _autoHeight: true, _yMargin: 80, backgroundColor: "lightgray"
});
}