Browse
For agents
About
Widget Context
/
1.0.7
Widget Context
v1.0.7
Switch version
1.0.3
1.0.4
1.0.5
1.0.6
1.0.7
1.1.0
1.1.1
1.2.0
1.3.0
1.3.1
1.3.2
1.3.3
1.4.0
trunk
0.4.1
0.4.2
0.4.3
0.4.4
0.4.5
0.6
0.7
0.7.1
0.7.2
0.8
0.8.1
All 30 releases
Overview
Code
widget-context
/
debug
/
debug.js
debug.js
in Widget Context 1.0.7, at debug/debug.js
9 lines
187 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
3
$
(
'
#debug-menu-target-Debug_Widget_Context .toggle
'
)
.
on
(
'
click
'
,
function
(
e
)
{
4
e
.
preventDefault
(
)
;
5
$
(
$
(
this
)
.
attr
(
'
href
'
)
)
.
toggle
(
)
;
6
}
)
;
7
8
}
)
;
9