PluginProbe ʕ •ᴥ•ʔ
Browse
Analyzed
Analysis
Tracking Code Manager
/
2.0.13
Tracking Code Manager
v2.0.13
Switch version
trunk
1.11.8
1.11.9
1.12.0
1.12.1
1.12.2
1.12.3
1.4
1.5
2.0.0
2.0.1
2.0.13
2.0.14
2.0.15
2.0.16
2.0.2
2.0.3
2.0.4
2.0.5
2.0.6
2.0.7
2.1.0
2.2.0
2.3.0
2.4.0
2.5.0
2.6.0
Overview
Code
Analysis
tracking-code-manager
/
assets
/
js
/
delete-confirm.js
tracking-code-manager
/
assets
/
js
Last commit date
ace
4 years ago
delete-confirm.js
4 years ago
editor.js
4 years ago
library.js
4 years ago
manager.js
4 years ago
plugin.js
4 years ago
delete-confirm.js
7 lines
1
function
TCMP_btnDeleteClick
(
id
)
{
2
var
success
=
confirm
(
delete_data
.
confirm
)
;
3
if
(
success
)
{
4
var
href
=
delete_data
.
href
+
'
&tcmp_nonce=
'
+
delete_data
.
nonce
+
'
&action=delete&id=
'
;
5
location
.
href
=
href
+
id
;
6
}
7
}