New resources mostly.

This commit is contained in:
James Cole
2015-02-06 07:23:26 +01:00
parent bc16298b6e
commit 1bd02529e0
98 changed files with 16671 additions and 431 deletions

24
public/js/help.js Normal file
View 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;
}