From 24c8a242ddfd52230986594d41314f281eb5e6d6 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 29 May 2014 12:28:19 -0400 Subject: [PATCH] - disable the scrolling layout, anchors for code/params are not working, and the current approach used for sections is not able to work for fine-grained anchors like these, another approach needs to be taken. --- doc/build/static/init.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/build/static/init.js b/doc/build/static/init.js index 5687eed1dd..2be395a1f0 100644 --- a/doc/build/static/init.js +++ b/doc/build/static/init.js @@ -61,7 +61,8 @@ function initFloatyThings() { $(document).ready(function() { initSQLPopups(); - if (!$.browser.mobile) { + // disable for now, still can't get anchors to work in all cases + if (0) { //!$.browser.mobile) { initFloatyThings(); } }); -- 2.47.2