diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-08-15 23:37:33 +0800 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-08-15 23:37:33 +0800 |
commit | 78add502d71dca43bb59ab9ad91745c64d0bf74d (patch) | |
tree | 5fec228a2f7460b68e4c7c0674c194ede8753d26 /public/ng | |
parent | 36b4c57ff13198196134b853f624fb633061734d (diff) | |
download | gitea-78add502d71dca43bb59ab9ad91745c64d0bf74d.tar.gz gitea-78add502d71dca43bb59ab9ad91745c64d0bf74d.zip |
Finish new organization members and invitation page
Diffstat (limited to 'public/ng')
-rw-r--r-- | public/ng/css/gogs.css | 8 | ||||
-rw-r--r-- | public/ng/js/gogs.js | 25 | ||||
-rw-r--r-- | public/ng/less/gogs/organization.less | 8 |
3 files changed, 37 insertions, 4 deletions
diff --git a/public/ng/css/gogs.css b/public/ng/css/gogs.css index e7a3a66f26..6b400df28c 100644 --- a/public/ng/css/gogs.css +++ b/public/ng/css/gogs.css @@ -1823,8 +1823,12 @@ textarea#issue-add-content { .invite-box { padding: 50px 0; min-height: 130px; - text-align: center; + margin: 0 auto; + width: 50%; } .invite-box input { - width: 250px; + width: 300px; +} +#org-member-list-block { + padding-top: 2px; } diff --git a/public/ng/js/gogs.js b/public/ng/js/gogs.js index ad8df99716..5e6a6a6b91 100644 --- a/public/ng/js/gogs.js +++ b/public/ng/js/gogs.js @@ -329,6 +329,28 @@ function initOrgSetting() { }); } +function initInvite() { + // Invitation. + var $ul = $('#org-member-invite-list'); + $('#org-member-invite').on('keyup', function () { + var $this = $(this); + if (!$this.val()) { + $ul.toggleHide(); + return; + } + Gogs.searchUsers($this.val(), $ul); + }).on('focus', function () { + if (!$(this).val()) { + $ul.toggleHide(); + } else { + $ul.toggleShow(); + } + }).next().next().find('ul').on("click", 'li', function () { + $('#org-member-invite').val($(this).text()); + $ul.toggleHide(); + }); +} + $(document).ready(function () { initCore(); if ($('#user-profile-setting').length) { @@ -343,6 +365,9 @@ $(document).ready(function () { if ($('#org-setting').length) { initOrgSetting(); } + if ($('#invite-box').length) { + initInvite(); + } Tabs('#dashboard-sidebar-menu'); diff --git a/public/ng/less/gogs/organization.less b/public/ng/less/gogs/organization.less index cbdec3132e..3805829532 100644 --- a/public/ng/less/gogs/organization.less +++ b/public/ng/less/gogs/organization.less @@ -150,8 +150,12 @@ .invite-box { padding: 50px 0; min-height: 130px; - text-align: center; + margin: 0 auto; + width: 50%; input { - width: 250px; + width: 300px; } +} +#org-member-list-block { + padding-top: 2px; }
\ No newline at end of file |