diff options
Diffstat (limited to 'public/js/index.js')
-rw-r--r-- | public/js/index.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/public/js/index.js b/public/js/index.js index 160be5b684..9b67e59264 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -1683,7 +1683,10 @@ function showDeletePopup() { filter += "#" + $this.attr("id") } - $('.delete.modal' + filter).modal({ + var dialog = $('.delete.modal' + filter); + dialog.find('.repo-name').text($this.data('repo-name')); + + dialog.modal({ closable: false, onApprove: function() { if ($this.data('type') == "form") { |