Last active
February 24, 2016 04:36
-
-
Save harrisonhjones/c3bc07a0aa82d5ffc4f7 to your computer and use it in GitHub Desktop.
This file contains 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
// ==UserScript== | |
// @name Particle Docs Next Arrow Tweak | |
// @namespace https://docs.particle.io | |
// @version 0.4 | |
// @description Scoots the "next" arrow over a bit on the Particle docs so the scroll bars work | |
// @author Harrison Jones ([email protected]) | |
// @match https://docs.particle.io/* | |
// @grant none | |
// @require http://code.jquery.com/jquery-latest.js | |
// @updateURL https://gist.github.com/harrisonhjones/c3bc07a0aa82d5ffc4f7/raw/docsnextarrowtweak.user.js | |
// @run-at document-end | |
// ==/UserScript== | |
/* jshint -W097 */ | |
'use strict'; | |
//$(document).ready(function() { | |
// Scoot the next arrow over a bit so the scroll bars work. | |
$( ".next-arrow").css("right","20px"); | |
console.log("Right arrow tweaked!"); | |
//}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment