Skip to content

Instantly share code, notes, and snippets.

@bkeepers
Created March 3, 2010 18:35
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save bkeepers/320844 to your computer and use it in GitHub Desktop.
Save bkeepers/320844 to your computer and use it in GitHub Desktop.
Get timezone offset from the browser and use it for timezones in Rails
jQuery(function() {
$.cookie('tz', (new Date()).getTimezoneOffset());
});
class ApplicationController < ActionController::Base
before_filter :set_timezone
# …
private
def set_timezone
if current_user && browser_timezone && browser_timezone.name != current_user.time_zone
current_user.update_attributes :time_zone => browser_timezone.name
end
Time.zone = current_user ? current_user.time_zone : browser_timezone
end
def browser_timezone
@browser_timezone ||= begin
ActiveSupport::TimeZone[-cookies[:tz].to_i.minutes]
end if cookies[:tz].present?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment