summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2016-10-11 16:14:33 -0400
committerPliable Pixels <pliablepixels@gmail.com>2016-10-11 16:14:33 -0400
commit19c26c350efb1b008ee9806fbf73d64cfba864f5 (patch)
tree7c0f12533e3460bdbdcbac1e9b6f1f76109dd06d
parentdffa601b563ef52e01249389ffc69ec82233217c (diff)
removed my math.ceil hack, added PR hack
Former-commit-id: f142c72ea69ca11eae8d3a37ec933754e833eabe
-rwxr-xr-xwww/external/ion-pullup.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/external/ion-pullup.js b/www/external/ion-pullup.js
index 9bd5ab56..798d25ee 100755
--- a/www/external/ion-pullup.js
+++ b/www/external/ion-pullup.js
@@ -43,8 +43,8 @@ angular.module('ionic-pullup', [])
tabs = document.querySelector('.tabs');
hasBottomTabs = document.querySelector('.tabs-bottom');
header = document.querySelector('.bar-header');
- tabsHeight = tabs ? tabs.offsetHeight : 0;
- headerHeight = header ? header.offsetHeight : 0;
+ tabsHeight = tabs ? tabs.offsetHeight : 80;
+ headerHeight = header ? header.offsetHeight : 80;
}
function computeHeights() {