diff options
Diffstat (limited to 'public/js/gogs.js')
-rw-r--r-- | public/js/gogs.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/public/js/gogs.js b/public/js/gogs.js index 995b6f1d..12373d50 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -492,6 +492,9 @@ $(document).ready(function () { $('.show-panel.button').click(function () { $($(this).data('panel')).show(); }); + $('.show-modal.button').click(function () { + $($(this).data('modal')).modal('show'); + }); initCommentForm(); initInstall(); |