| author | ymh <ymh.work@gmail.com> |
| Thu, 16 Nov 2017 16:31:48 +0100 | |
| changeset 555 | 51023e5eae05 |
| parent 541 | e756a8c72c3d |
| permissions | -rwxr-xr-x |
(function ($) { /** * Checks to see if the cron should be automatically run. */ Drupal.behaviors.cronCheck = { attach: function(context, settings) { if (settings.cronCheck || false) { $('body').once('cron-check', function() { // Only execute the cron check if its the right time. if (Math.round(new Date().getTime() / 1000.0) > settings.cronCheck) { $.get(settings.basePath + 'system/run-cron-check'); } }); } } }; })(jQuery);