/* Show a confirm dialogue before continuing: Delete this */ (function(Modules) { "use strict"; Modules.Confirm = function() { this.start = function(element) { element.on('click', confirm); function confirm(evt) { var message = element.data('message'); if (! window.confirm(message)) { evt.preventDefault(); } } }; }; })(window.GOVUKAdmin.Modules);