minor - add undefined and null check
This commit is contained in:
parent
1516f063b5
commit
cd210e3170
|
@ -20,8 +20,10 @@ function ad_closeBuble(uuid) {
|
||||||
|
|
||||||
function scrollToRow(uuid){
|
function scrollToRow(uuid){
|
||||||
var cmp = $e(uuid);
|
var cmp = $e(uuid);
|
||||||
|
if (!(typeof cmp == "undefined") && !(cmp == null)) {
|
||||||
cmp.style.display="inline";
|
cmp.style.display="inline";
|
||||||
cmp.focus();
|
cmp.focus();
|
||||||
cmp.style.display="none";
|
cmp.style.display="none";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue