2014-11-09 22:49:07 +01:00
|
|
|
$(document).ready(function() {
|
|
|
|
$('.btn-group').button();
|
|
|
|
$('[data-toggle="tooltip"]').tooltip();
|
|
|
|
|
|
|
|
$('.fileinput').click(function() {
|
|
|
|
var realinputid = '#' + $(this).attr('id').replace(/_chooser.*/, '');
|
|
|
|
$(realinputid).click();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('input[type="file"]').change(function() {
|
|
|
|
var choosertxtid = '#' + $(this).attr('id') + '_choosertxt';
|
|
|
|
$(choosertxtid).val($(this).val());
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.dropdown-menu li').click(function() {
|
|
|
|
var menu = $(this).parent();
|
|
|
|
var items = menu.children();
|
|
|
|
var button = menu.prev();
|
|
|
|
var input = button.prev();
|
|
|
|
|
|
|
|
items.removeClass('active');
|
|
|
|
$(this).addClass('active');
|
|
|
|
|
|
|
|
button.text($(this).text());
|
|
|
|
button.append(' <span class="caret"></span>');
|
|
|
|
|
|
|
|
input.attr('value', $(this).text());
|
|
|
|
});
|
2014-11-09 23:49:06 +01:00
|
|
|
|
|
|
|
$('.switch').bootstrapToggle();
|
2014-11-17 23:44:18 +01:00
|
|
|
|
|
|
|
$('#save').click(function() {
|
|
|
|
$(this).prop('disabled', true);
|
|
|
|
$('#save-loading').show();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#status .close').click(function() {
|
|
|
|
$(this).parent().hide();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#statusbtn').click(function() {
|
2014-11-20 20:03:24 +01:00
|
|
|
if($('#status-loading').is(':hidden')) {
|
|
|
|
$('#status').hide();
|
|
|
|
$('#status-loading').show();
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: '?/status',
|
|
|
|
}).done(function(data) {
|
|
|
|
$('#status-loading').hide();
|
|
|
|
$('#status-text').html('<ul>' + data + '</ul>');
|
|
|
|
$('#status').show('slow');
|
|
|
|
});
|
|
|
|
}
|
2014-11-17 23:44:18 +01:00
|
|
|
});
|
2014-11-09 22:49:07 +01:00
|
|
|
});
|