mirror of
https://github.com/go-gitea/gitea
synced 2025-07-03 17:17:19 +00:00
add webhook recent deliveries
This commit is contained in:
@ -341,10 +341,6 @@ function initRepository() {
|
||||
|
||||
// Diff
|
||||
if ($('.repository.diff').length > 0) {
|
||||
$('.diff-detail-box .toggle.button').click(function () {
|
||||
$($(this).data('target')).slideToggle(100);
|
||||
})
|
||||
|
||||
var $counter = $('.diff-counter');
|
||||
if ($counter.length < 1) {
|
||||
return;
|
||||
@ -406,6 +402,11 @@ $(document).ready(function () {
|
||||
}
|
||||
}
|
||||
});
|
||||
$('.tabular.menu .item').tab();
|
||||
|
||||
$('.toggle.button').click(function () {
|
||||
$($(this).data('target')).slideToggle(100);
|
||||
});
|
||||
|
||||
// Dropzone
|
||||
if ($('#dropzone').length > 0) {
|
||||
|
Reference in New Issue
Block a user