mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-28 09:51:21 -06:00
28 lines
744 B
JavaScript
28 lines
744 B
JavaScript
$(function () {
|
|
"use strict";
|
|
$('#help').click(showHelp);
|
|
$(function () {
|
|
|
|
$('[data-toggle="tooltip"]').tooltip();
|
|
});
|
|
});
|
|
|
|
function showHelp(e) {
|
|
"use strict";
|
|
var target = $(e.target);
|
|
var route = target.data('route');
|
|
//
|
|
$('#helpBody').html('<i class="fa fa-refresh fa-spin"></i>');
|
|
$('#helpTitle').html('Please hold...');
|
|
|
|
$('#helpModal').modal('show');
|
|
$.getJSON('help/' + encodeURI(route)).success(function (data) {
|
|
$('#helpBody').html(data.text);
|
|
$('#helpTitle').html(data.title);
|
|
}).fail(function () {
|
|
$('#helpBody').html('<p class="text-danger">No help text could be found.</p>');
|
|
$('#helpTitle').html('Sorry...');
|
|
});
|
|
return false;
|
|
}
|