Skip to content

Instantly share code, notes, and snippets.

@visnup
Created November 3, 2009 02:17
Show Gist options
  • Save visnup/224711 to your computer and use it in GitHub Desktop.
Save visnup/224711 to your computer and use it in GitHub Desktop.
just get the time zone from javascript, don't deal with asking
# in application.js
document.cookie = '_swivel_time_zone=' + new Date().getTimezoneOffset()*-60;
# in application_controller.rb:
before_filter { |controller| Time.zone = ActiveSupport::TimeZone[controller.cookies[:_swivel_time_zone].to_i] if controller.cookies[:_swivel_time_zone] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment