Skip to content

Instantly share code, notes, and snippets.

View jansmolders86's full-sized avatar
🏠
Working from home

Jan Smolders jansmolders86

🏠
Working from home
View GitHub Profile
@jansmolders86
jansmolders86 / 60fpsfix.js
Last active August 29, 2015 14:21
60fps fix plugin to disable hover state while scrolling by masking mouse cursor
;(function($, window, document, undefined) {
'use strict';
var ns = 'fpsFix',
methods = {};
function _init(options) {
if (!_allDependenciesAvailable()) {return false ;}
var opts = $.extend(true, {}, $.fn[ns].defaults, options);