/* * 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(''); $('#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('
No help text could be found.
'); $('#helpTitle').html('Apologies'); }); return false; }