company-start link
This commit is contained in:
parent
f99aa7f837
commit
9ccdf753a3
|
@ -32,12 +32,14 @@ var global_load = null;
|
||||||
function stopLoad(e) {
|
function stopLoad(e) {
|
||||||
if (!e)
|
if (!e)
|
||||||
e = window.event;
|
e = window.event;
|
||||||
if (e.preventDefault)
|
if (e) {
|
||||||
e.preventDefault();
|
if (e.preventDefault)
|
||||||
if (e.stopPropagation) {
|
e.preventDefault();
|
||||||
e.stopPropagation();
|
if (e.stopPropagation) {
|
||||||
} else {
|
e.stopPropagation();
|
||||||
e.cancelBubble = true;
|
} else {
|
||||||
|
e.cancelBubble = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function event(where) {
|
function event(where) {
|
||||||
|
|
Loading…
Reference in New Issue