function isDocBeingEdited()
{
if (isNewDoc()) return true;
url = window.location.toString();
url = url.toLowerCase();
if (url.indexOf("editdocument") == -1)
return false;
else
return true;
}
//Verificar se o documento é novo
function isNewDoc()
{
url = window.location.toString();
url = url.toLowerCase();
if (url.indexOf("openform") == -1)
return false;
else
return true;
}
Nenhum comentário:
Postar um comentário