Browse
For agents
About
Tracking Script Manager
/
2.0.13
Tracking Script Manager
v2.0.13
Switch version
trunk
1.0.1
1.0.2
1.0.3
1.0.4
1.0.5
1.0.6
1.0.7
1.0.8
1.0.9
1.1
1.1.1
1.1.2
1.1.3
1.1.4
1.1.5
1.1.6
2.0.0
2.0.1
2.0.10
2.0.11
2.0.12
2.0.13
2.0.14
2.0.15
All 33 releases
Overview
Code
tracking-script-manager
/
js
/
post-list.js
post-list.js
in Tracking Script Manager 2.0.13, at js/post-list.js
6 lines
275 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
jQuery
(
document
)
.
ready
(
function
(
$
)
{
2
//
added class to expired row
3
$
(
'
#the-list tr td.column-status span.expired
'
)
.
parent
(
)
.
siblings
(
)
.
addClass
(
'
expired_inactive
'
)
;
4
$
(
'
#the-list tr td.column-status span.expired
'
)
.
parent
(
)
.
addClass
(
'
expired_inactive
'
)
;
5
}
)
;
6