custom.js 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /* Wifi Hotspot app for YunoHost
  2. * Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  3. * Contribute at https://github.com/jvaubourg/hotspot_ynh
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Affero General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Affero General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Affero General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. $(document).ready(function() {
  19. $('.btn-group').button();
  20. $('[data-toggle="tooltip"]').tooltip();
  21. $('.fileinput').click(function() {
  22. var realinputid = '#' + $(this).attr('id').replace(/_chooser.*/, '');
  23. $(realinputid).click();
  24. });
  25. $('input[type="file"]').change(function() {
  26. var choosertxtid = '#' + $(this).attr('id') + '_choosertxt';
  27. $(choosertxtid).val($(this).val().replace(/^.*[\/\\]/, ''));
  28. });
  29. $('.dropdown-menu li').click(function() {
  30. var menu = $(this).parent();
  31. var items = menu.children();
  32. var button = menu.prev();
  33. var input = button.prev();
  34. items.removeClass('active');
  35. $(this).addClass('active');
  36. button.text($(this).text());
  37. button.append(' <span class="caret"></span>');
  38. input.attr('value', $(this).text());
  39. });
  40. $('.switch').bootstrapToggle();
  41. $('#save').click(function() {
  42. $(this).prop('disabled', true);
  43. $('#save-loading').show();
  44. $('#form').submit();
  45. });
  46. $('#saveconfirm').click(function() {
  47. $(this).hide();
  48. $('#saveconfirmation').show();
  49. });
  50. $('#status .close').click(function() {
  51. $(this).parent().hide();
  52. });
  53. $('#statusbtn').click(function() {
  54. if($('#status-loading').is(':hidden')) {
  55. $('#status').hide();
  56. $('#status-loading').show();
  57. $.ajax({
  58. url: '?/status',
  59. }).done(function(data) {
  60. $('#status-loading').hide();
  61. $('#status-text').html('<ul>' + data + '</ul>');
  62. $('#status').show('slow');
  63. });
  64. }
  65. });
  66. });