Skip to content

Instantly share code, notes, and snippets.

@pierre-pretorius
pierre-pretorius / turbolinks_local_storage.js
Last active November 14, 2019 12:56
Store turbolinks cache in window.localStorage
@pierre-pretorius
pierre-pretorius / gist:237a1d50fad4a0bac82e
Last active August 29, 2015 14:17
Rails: Workaround to place variant in URL
class ApplicationController < ActionController::Base
before_filter :set_variant
def set_variant
if request.format == :mobile
if request.xhr?
request.format = :js
else
request.format = :html
end