Created
October 15, 2010 05:22
Revisions
-
joshsimmons revised this gist
Oct 10, 2010 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains 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 @@ -5,8 +5,8 @@ $(document).ready(function(){ // I'm sure there's a more efficient selector for this. $('a[href$=doc], a[href$=docx], a[href$=pdf], a[href$=rtf]').attr( 'href', function(){ return 'http://docs.google.com/viewer?url=' + this.href; } ) .attr( -
joshsimmons revised this gist
Oct 10, 2010 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains 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 @@ -6,7 +6,7 @@ $(document).ready(function(){ $('a[href$=doc], a[href$=docx], a[href$=pdf], a[href$=rtf]').attr( 'href', function(index, attr){ return 'http://docs.google.com/viewer?url=' + attr; } ) .attr( -
joshsimmons revised this gist
Oct 10, 2010 . 1 changed file with 10 additions and 5 deletions.There are no files selected for viewing
This file contains 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 @@ -3,9 +3,14 @@ $(document).ready(function(){ // I'm sure there's a more efficient selector for this. $('a[href$=doc], a[href$=docx], a[href$=pdf], a[href$=rtf]').attr( 'href', function(index, attr){ return 'http://docs.google.com/viewer?url=' + href; } ) .attr( 'target', '_blank' ); }); -
joshsimmons created this gist
Oct 9, 2010 .There are no files selected for viewing
This file contains 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,11 @@ /* View documents with Google Docs ... * because my laptop can't handle Word and Chrome at the same time. */ $(document).ready(function(){ // I'm sure there's a more efficient selector for this. $('a[href$=doc], a[href$=docx], a[href$=pdf], a[href$=rtf]').each(function(index){ var href = $(this).attr('href'); $(this).attr('href', 'http://docs.google.com/viewer?url=' + href); $(this).attr('target', '_blank'); }); });