15 lines
399 B
JavaScript
Executable File
15 lines
399 B
JavaScript
Executable File
$(document).ready(function() {
|
|
|
|
$('.search-input').on('keypress', function(event) {
|
|
if (event.which === 13) {
|
|
window.location.href = "/mix?search="+$(this).val();
|
|
return false;
|
|
}
|
|
})
|
|
|
|
$(".widget_nice_tag_cloud").load("/widget/toptags.html");
|
|
|
|
$(".site-main").click();
|
|
|
|
})
|