various fixes

This commit is contained in:
2018-03-27 19:23:24 +02:00
parent 02f9828009
commit d8e581c53f
19 changed files with 889 additions and 43 deletions

View File

@@ -0,0 +1,8 @@
$(function() {
var $body = $('body');
$body.on('click', '.search__contest__item', function(event) {
event.preventDefault();
$(this).hide();
});
});