Last active
December 20, 2015 18:19
Revisions
-
ahoward revised this gist
Aug 7, 2013 . 1 changed file with 12 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ # 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 -
ahoward revised this gist
Aug 7, 2013 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,8 @@ // today's quiz is simple: // // fork this code and explain, in english, what it does. // // suggest simpler alternatives. // if(state != 'complete'){ -
ahoward created this gist
Aug 7, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,34 @@ // 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); };