Skip to content

Instantly share code, notes, and snippets.

View catharsisjelly's full-sized avatar
🏳️‍🌈

Chris Lock catharsisjelly

🏳️‍🌈
View GitHub Profile
@monkeymonk
monkeymonk / jquery.scrollToTop.js
Created April 8, 2016 08:26
ES6 jQuery plugin definition
import $ from 'jquery';
import plugin from './plugin';
class ScrollToTop {
constructor(element, options) {
const $element = $(element);
$(window).scroll(function () {
if ($(this).scrollTop() > options.offset) {
$element.fadeIn();