Dragan Todorovic
Dragan Todorovic
Original GA is reported as Leverage browser caching on both GT Metrics and pingdom , with ga-lite the hit is moved from PageSpeed to YSlow so you are getting hit...
You need requestAnimationFrame there , script is killing your page  see this https://gist.github.com/paulirish/1579671 add raf and do this instead ``` $(window).bind('scroll',function(e){ requestAnimationFrame ( parallaxImgScroll ); }); ``` and in...
I am using igh-dpi-support=1 /force-device-scale-factor=1 in Chrome because font on WIN is 125% to reset the Chrome font to 100% and your app starts in background on its own and...
I am just reopening this since the post here https://github.com/WordPress/theme-check/issues/64 is over a year old . @Otto42 how big of a change would it be on theme check side? Minor...
Is this false positive or? It says `Usage of the iframe HTML element is prohibited` This is the line that triggers it https://github.com/Themezly/Creatus/blob/WP-Org-Prep/assets/js/thz.site.js#L3114 but the iframe element is needed for...
Suggestion , add a link to this repo in code comments. I found the old version in packed theme plugins file and by looking at this ``` /*! Copyright 2012,...
This is WordPress specific issue but since I am making a theme for users there will be many of them asking to fix it. When admin is logged in the...
@lukehaas Could you please point to where and how are you detecting when panel has overflow? I would like to implement iScroll and it workes in `animateScroll` but I need...
Because of `overflow-y: scroll; `on an html `scrollbar:false` does not work ``` html { overflow-y: scroll; overflow-x: hidden; max-width: 100%; box-sizing: border-box; } ``` When removed the scrollbar is gone...
I used your instructions for autocompile as advised here http://leafo.net/lessphp/docs/#compiling_automatically since checkedCompile only checks the master less file and none of the @import ones. The issue is that when you...