Skip to content

Instantly share code, notes, and snippets.

@addyosmani
Created October 15, 2010 05:22

Revisions

  1. joshsimmons revised this gist Oct 10, 2010. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions aviary.js
    Original 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(index, attr){
    return 'http://docs.google.com/viewer?url=' + attr;
    function(){
    return 'http://docs.google.com/viewer?url=' + this.href;
    }
    )
    .attr(
  2. joshsimmons revised this gist Oct 10, 2010. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion aviary.js
    Original 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=' + href;
    return 'http://docs.google.com/viewer?url=' + attr;
    }
    )
    .attr(
  3. joshsimmons revised this gist Oct 10, 2010. 1 changed file with 10 additions and 5 deletions.
    15 changes: 10 additions & 5 deletions aviary.js
    Original 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]').each(function(index){
    var href = $(this).attr('href');
    $(this).attr('href', 'http://docs.google.com/viewer?url=' + href);
    $(this).attr('target', '_blank');
    });
    $('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'
    );
    });
  4. joshsimmons created this gist Oct 9, 2010.
    11 changes: 11 additions & 0 deletions aviary.js
    Original 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');
    });
    });