From 2f0ef397cfa7f3bf64a76f98fc304cfebb34a64f Mon Sep 17 00:00:00 2001 From: tanshu Date: Sat, 24 Apr 2021 09:09:57 +0530 Subject: [PATCH] Fix: Disable pull to refresh in chrome. --- bookie/src/app/app.component.css | 4 ---- bookie/src/styles.css | 2 ++ deploy.sh | 5 +++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/bookie/src/app/app.component.css b/bookie/src/app/app.component.css index 67a0ff1..e69de29 100644 --- a/bookie/src/app/app.component.css +++ b/bookie/src/app/app.component.css @@ -1,4 +0,0 @@ -body { - /* Disables pull-to-refresh but allows overscroll glow effects. */ - overscroll-behavior-y: contain; -} diff --git a/bookie/src/styles.css b/bookie/src/styles.css index 3b9cecf..9ed375b 100644 --- a/bookie/src/styles.css +++ b/bookie/src/styles.css @@ -3,6 +3,8 @@ html, body { height: 100%; + /* Disables pull-to-refresh but allows overscroll glow effects. */ + overscroll-behavior-y: contain; } body { margin: 0; diff --git a/deploy.sh b/deploy.sh index c5f4822..fc6c9d4 100755 --- a/deploy.sh +++ b/deploy.sh @@ -20,5 +20,6 @@ cd docker/app || exit docker build --tag barker:latest . cd "$parent_path/docker" || exit docker save barker:latest | bzip2 | pv | ssh tanshu@knox.tanshu.com 'bunzip2 | sudo docker load' -ansible-playbook playbook-chd.yml -ansible-playbook playbook-pkl.yml +ansible-playbook --limit=knox playbook-mhl.yml +ansible-playbook --limit=knox playbook-chd.yml +ansible-playbook --limit=knox playbook-pkl.yml