dotjs/github.com.js @ 0083e7916624

Peeling the shit onion
author Steve Losh <steve@stevelosh.com>
date Wed, 14 Aug 2013 12:43:34 -0400
parents ad46491f8dd6
children 6111b0303a5b
$(function() {
    $('#top_search_form').attr('action', 'https://google.com/search').submit(function(e) {
       var q = $('#js-command-bar-field').val();
       $('#js-command-bar-field').val(q + " site:github.com");
       e.stopPropagation();
       return false;
    });

});