Enhanced Theme: Hide Domain Selector on blur (click off)
This commit is contained in:
parent
c6c408ab8e
commit
82e71755f4
|
|
@ -719,7 +719,7 @@ legend {
|
||||||
right: 0px;
|
right: 0px;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
bottom: 0px;
|
bottom: 0px;
|
||||||
width: 400px;
|
width: 350px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
@ -848,6 +848,11 @@ legend {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// hides the domain selector when clicking off
|
||||||
|
$('#domain_filter').blur(function() {
|
||||||
|
hide_domains();
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
function hide_domains() {
|
function hide_domains() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue