Skip to content

Instantly share code, notes, and snippets.

@jnunemaker
Forked from bkeepers/application.js
Created March 3, 2010 18:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jnunemaker/320850 to your computer and use it in GitHub Desktop.
Save jnunemaker/320850 to your computer and use it in GitHub Desktop.
browser cookie timezone stuff
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