Skip to content

Instantly share code, notes, and snippets.

@Wol
Created February 13, 2016 17:51
Show Gist options
  • Save Wol/a86ea56b7b8fd7722318 to your computer and use it in GitHub Desktop.
Save Wol/a86ea56b7b8fd7722318 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name National Trust Disable Slide Animation
// @version 0.1
// @match *://www.nationaltrust.org.uk/*
// ==/UserScript==
(function(){
window.setTimeout(function(){
if(typeof jQuery !== 'undefined' && jQuery){
$('html').removeClass('anim-enabled');
}
}, 100);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment