PluginProbe
Bulk Delete Comments / trunk
Bulk Delete Comments vtrunk
2.5 trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 2.0 2.1 2.2 2.3 2.4
bulk-delete-comments / js / script.js

script.js in Bulk Delete Comments trunk, at js/script.js

11 lines 186 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 let confirmMessage = 'Are you sure?';
2
3
4 function setConfirmMessage(message) {
5 confirmMessage = message;
6 }
7
8
9 function confirmAction() {
10 return confirm(confirmMessage);
11 }