Browse
For agents
About
Bulk Delete Comments
/
trunk
Bulk Delete Comments
vtrunk
Switch version
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
Overview
Code
bulk-delete-comments
/
js
/
script.js
script.js
in Bulk Delete Comments trunk, at js/script.js
11 lines
186 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
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
}