mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-29 18:20:01 +00:00
38 lines
999 B
JavaScript
38 lines
999 B
JavaScript
/*
|
|
* help.js
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms of the
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
*
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
$(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');
|
|
$('#helpTitle').html('Help for this page');
|
|
$.getJSON('help/' + encodeURI(route)).done(function (data) {
|
|
$('#helpBody').html(data);
|
|
}).fail(function () {
|
|
$('#helpBody').html('<p class="text-danger">No help text could be found.</p>');
|
|
$('#helpTitle').html('Apologies');
|
|
});
|
|
return false;
|
|
}
|