company-start link

This commit is contained in:
Martin Müller 2014-05-19 15:38:48 +02:00
parent f99aa7f837
commit 9ccdf753a3
1 changed files with 8 additions and 6 deletions

View File

@ -32,12 +32,14 @@ var global_load = null;
function stopLoad(e) {
if (!e)
e = window.event;
if (e.preventDefault)
e.preventDefault();
if (e.stopPropagation) {
e.stopPropagation();
} else {
e.cancelBubble = true;
if (e) {
if (e.preventDefault)
e.preventDefault();
if (e.stopPropagation) {
e.stopPropagation();
} else {
e.cancelBubble = true;
}
}
}
function event(where) {