Skip to content

Instantly share code, notes, and snippets.

@defunkt
Created August 26, 2009 17:56
Show Gist options
  • Save defunkt/175678 to your computer and use it in GitHub Desktop.
Save defunkt/175678 to your computer and use it in GitHub Desktop.

Revisions

  1. defunkt revised this gist Aug 26, 2009. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -9,3 +9,5 @@ $(document).ready(function() {
    -webkit-border-radius: 8px;
    padding: 3px;
    }

    // (re: http://twitter.com/defunkt/status/3560974911)
  2. defunkt created this gist Aug 26, 2009.
    11 changes: 11 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    // replaced this
    $(document).ready(function() {
    if ($.fn.corner) $('.corner').corner()
    })

    // with this
    .corner {
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    padding: 3px;
    }