diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-29 12:28:19 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-05-29 12:29:02 -0400 |
commit | 5041c1f46910aa35b4a70c8921b4f139b41386ea (patch) | |
tree | 09035425743ee510322fd5315c25674b71a16d4b | |
parent | 16b7f1816d54955da3062ecb3aa5012e2549cb26 (diff) | |
download | sqlalchemy-5041c1f46910aa35b4a70c8921b4f139b41386ea.tar.gz |
- 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.
-rw-r--r-- | doc/build/static/init.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/build/static/init.js b/doc/build/static/init.js index 5687eed1d..2be395a1f 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(); } }); |