Skip to content

Instantly share code, notes, and snippets.

View tylersticka's full-sized avatar

Tyler Sticka tylersticka

View GitHub Profile
@tylersticka
tylersticka / config.rb
Created July 13, 2012 15:34 — forked from erikjung/config.rb
Testing Compass Vertical Rhythm Loveliness
http_path = "/"
css_dir = ""
sass_dir = ""
images_dir = ""
javascripts_dir = ""
output_style = :expanded
line_comments = false
preferred_syntax = :scss
@tylersticka
tylersticka / gist:2891844
Created June 7, 2012 21:56 — forked from gyndav/gist:1883439
Skip iPhone URL bar
(navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i)) && !location.hash && setTimeout(function(){
!pageYOffset && window.scrollTo(0,1);
}, 1000);