Roman Edirisinghe
Roman Edirisinghe
@dthree any hope of getting this merged? I see you've been active in github recently.
@exupero any chance of merging this pull request?
@nsonnad I'm getting a warning in Chrome v45: `Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check...
Yes, I'm getting "GET" errors in Firefox's console. Evidently something about the font relative URL is getting handled differently by FF.
It doesn't seem like @drewsymo is updating this any longer, so I'm not sure your pull requests will ever get merged. I created another fork of this, in a sense,...
This issue is related to vorpal: https://github.com/frctl/fractal/issues/671
You can see we've been prodding dthree to update vorpal here: https://github.com/dthree/vorpal/pull/343#issuecomment-803110177
Here's an example of what I did to disable skrollr on anything less than 600px wide: ``` // DEBOUNCE FUNCTION via @http://davidwalsh.name/javascript-debounce-function function debounce(a,b,c){var d;return function(){var e=this,f=arguments;clearTimeout(d),d=setTimeout(function(){d=null,c||a.apply(e,f)},b),c&&!d&&a.apply(e,f)}} skrollrCheck = debounce(function()...
If you put it directly in the HTML, did you wrap it in a script tag? ``` [your code] ```
Here's a slightly different approach, which is to disable skrollr for any device under 600px. The desire was to disable skrollr on phones, but enable it on some tablets. Also,...