mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-22 12:04:00 +00:00
Some new help functions, some cleanup.
This commit is contained in:
21
public/assets/javascript/firefly/help.js
Normal file
21
public/assets/javascript/firefly/help.js
Normal file
@@ -0,0 +1,21 @@
|
||||
$(function () {
|
||||
$('#help').click(showHelp);
|
||||
});
|
||||
|
||||
function showHelp(e) {
|
||||
target = $(e.target);
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user