PluginProbe ʕ •ᴥ•ʔ
Browse
Analyzed
Analysis
Tracking Code Manager
/
2.4.0
Tracking Code Manager
v2.4.0
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
1 year ago
delete-confirm.js
1 year ago
editor.js
1 year ago
library.js
1 year ago
manager.js
1 year ago
plugin.js
1 year 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
}