Commit 543a8b9b authored by Michal Čihař's avatar Michal Čihař

Do not show spam protection field

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent bd145d0e
$(function () {
/* AJAX loading of tabs/pills */
$(document).on('show.bs.tab', '[data-toggle="tab"][data-href], [data-toggle="pill"][data-href]', function (e) {
var $target = $(e.target);
var $content = $($target.attr('href'));
......@@ -16,8 +17,13 @@ $(function () {
);
});
/* Git commit tooltip */
$(document).tooltip({
selector: '.git-commit',
html: true
});
/* Hiding spam protection field */
$('#s_content').hide();
$('#id_content').parent('td').parent('tr').hide();
});
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment