Skip to content

Instantly share code, notes, and snippets.

@harrisonhjones
Last active February 24, 2016 04:36
Show Gist options
  • Save harrisonhjones/c3bc07a0aa82d5ffc4f7 to your computer and use it in GitHub Desktop.
Save harrisonhjones/c3bc07a0aa82d5ffc4f7 to your computer and use it in GitHub Desktop.
// ==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