dotjs/github.com.js @ 2e9487fd7094

Merge.
author Steve Losh <steve@stevelosh.com>
date Thu, 08 Aug 2013 11:01:26 -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;
    });

});