Skip to content

Instantly share code, notes, and snippets.

@cookrn
Forked from ahoward/action.rb
Created August 7, 2013 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cookrn/6175528 to your computer and use it in GitHub Desktop.
Save cookrn/6175528 to your computer and use it in GitHub Desktop.
# it's not critical for understanding
# but here is the associated server-side action
#
def version
@program = load_program!
@version = @program.versions.find(params[:version_id])
if stale?(:last_modified => @version.updated_at, :etag => @version.cache_key)
render
end
end
// today's quiz is simple:
//
// fork this code and explain, in english, what it does.
//
// suggest simpler alternatives.
//
if(state != 'complete'){
var get = function(){
jq.ajax({
'type' : 'GET',
'url' : url,
'cache' : false,
'success' : function(html){
version.replaceWith(html);
}
});
};
var head = function(callback){
jq.ajax({
'type' : 'HEAD',
'url' : url,
'success' : function(res, code, xhr){
var server_last_modified = xhr.getResponseHeader("Last-Modified");
if(Date.parse(server_last_modified) > Date.parse(last_modified)){
callback();
};
}
});
};
head(get);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment