Created
November 3, 2009 02:17
-
-
Save visnup/224711 to your computer and use it in GitHub Desktop.
just get the time zone from javascript, don't deal with asking
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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