blob: c8b489302aad283e46609813fbc6cdd7bb92dcf6 [file] [log] [blame]
(function($, document) {
$(document).ready(function() {
$('.downloads-directory').submit(function() {
var action = "archive";
if (document.domain.toLowerCase() === "archive.eclipse.org") {
action = "delete";
}
var c = confirm("Are you sure you would like to "+ action +" the selected item(s)?");
return c;
});
});
})(jQuery, document);