diff options
author | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-10 16:54:52 +0800 |
---|---|---|
committer | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-03-10 16:54:52 +0800 |
commit | 46687f391c4e81fd17f7ecac22d3587c711e07d5 (patch) | |
tree | 96b3486af84c634647dc03b2e7849d5618c0f42c /public/js | |
parent | 0d9b2f38600325e3a8d87526061efbe9e3b78b91 (diff) | |
download | gitea-46687f391c4e81fd17f7ecac22d3587c711e07d5.tar.gz gitea-46687f391c4e81fd17f7ecac22d3587c711e07d5.zip |
ssh keys operation page ui
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/app.js | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/public/js/app.js b/public/js/app.js index 6a4c72bd78..59d521090c 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -3,12 +3,7 @@ var Gogits = { }; (function ($) { - Gogits.showTooltips = function () { - $("body").tooltip({ - selector: "[data-toggle=tooltip]" - //container: "body" - }); - }; + Gogits.showTab = function (selector, index) { if (!index) { index = 0; @@ -27,11 +22,29 @@ var Gogits = { }; $form.validate(options); }; + + // ----- init elements + Gogits.initModals = function () { + var modals = $("[data-toggle=modal]"); + if (modals.length < 1) { + return; + } + $.each(modals, function (i, item) { + $(item).modal("hide"); + }); + }; + Gogits.initTooltips = function () { + $("body").tooltip({ + selector: "[data-toggle=tooltip]" + //container: "body" + }); + }; })(jQuery); function initCore() { - Gogits.showTooltips(); + Gogits.initTooltips(); + Gogits.initModals(); } function initRegister() { |