Browse
For agents
About
LoginPress | wp-login Custom Login Page Customizer
/
trunk
LoginPress | wp-login Custom Login Page Customizer
vtrunk
Switch version
6.2.5
6.2.4
6.2.3
6.2.2
6.2.1
trunk
1.0.0
1.0.1
1.0.10
1.0.11
1.0.12
1.0.13
1.0.14
1.0.15
1.0.16
1.0.17
1.0.18
1.0.19
1.0.2
1.0.20
1.0.21
1.0.22
1.0.23
1.0.3
1.0.4
All 118 releases
Overview
Code
loginpress
/
js
/
outside-plugin-admin.js
outside-plugin-admin.js
in LoginPress | wp-login Custom Login Page Customizer trunk, at js/outside-plugin-admin.js
12 lines
360 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
/**
2
* This file will work outside of the plugin context
3
*
@
param
{
jQuery
}
$
- jQuery object
4
*
@
since
6.1.1
5
*/
6
(
function
(
$
)
{
7
8
//
Make admin menu upgrade link open in a new tab
9
$
(
document
)
.
ready
(
function
(
)
{
10
$
(
'
.loginpress-sidebar-upgrade-pro a
'
)
.
attr
(
'
target
'
,
'
_blank
'
)
.
attr
(
'
rel
'
,
'
noopener noreferrer
'
)
;
11
}
)
;
12
}
)
(
jQuery
)
;