dotjs/github.com.js @ ad46491f8dd6

Updates
author Steve Losh <steve@stevelosh.com>
date Thu, 08 Aug 2013 10:59:46 -0400
parents 311e044593af
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;
    });

});