]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - tpl/default/js/shaarli.js
Theme: JS - Fix a bug preventing edit margin suppression to work
[github/shaarli/Shaarli.git] / tpl / default / js / shaarli.js
index 30d8ed6ff73482f9502e03268e321c3643aa0726..edcf280944a6f723551bf5df011f9228f71588f5 100644 (file)
@@ -255,10 +255,9 @@ window.onload = function () {
      * Remove CSS target padding (for fixed bar)
      */
     if (location.hash != '') {
-        var anchor = document.querySelector(location.hash);
+        var anchor = document.getElementById(location.hash.substr(1));
         if (anchor != null) {
             var padsize = anchor.clientHeight;
-            console.log(document.querySelector(location.hash).clientHeight);
             this.window.scroll(0, this.window.scrollY - padsize);
             anchor.style.paddingTop = 0;
         }