mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 03:39:00 +00:00
New resources mostly.
This commit is contained in:
24
public/js/help.js
Normal file
24
public/js/help.js
Normal file
@@ -0,0 +1,24 @@
|
||||
$(function () {
|
||||
$('#help').click(showHelp);
|
||||
$(function () {
|
||||
$('[data-toggle="tooltip"]').tooltip()
|
||||
})
|
||||
});
|
||||
|
||||
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