Created
June 4, 2022 07:44
-
-
Save cupnoodle/0256c9a106d3a2ad19a4b36d4c4efd02 to your computer and use it in GitHub Desktop.
Scroll to order actions box after loading
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
var cancellable_hash = window.location.hash.substr(1); | |
if(cancellable_hash === 'actions'){ | |
setTimeout(function() { | |
document.getElementById('cancellable-title').scrollIntoView(); | |
}, 1500); | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment