+//= require_self
//= require index/browse
//= require index/export
//= require index/key
+//= require index/notes
$(document).ready(function () {
var permalinks = $("#permalink").html();
if ($("#query").val()) {
$("#search_form").submit();
}
+
+ // Focus the search field for browsers that don't support
+ // the HTML5 'autofocus' attribute
+ if (!("autofocus" in document.createElement("input"))) {
+ $("#query").focus();
+ }
});