This commit is contained in:
mgalli%geckonnection.com 2005-11-10 17:54:37 +00:00
Родитель 194a45e592
Коммит bb036e7111
1 изменённых файлов: 1 добавлений и 11 удалений

Просмотреть файл

@ -576,17 +576,7 @@ function BrowserPopupShowing () {
}
var selectedRange=getBrowser().selectedBrowser.contentDocument.getSelection();
if(selectedRange) {
s=util_stripCharsFromString(selectedRange,"#_+()- ");
if(util_validateInteger(s) && s.length >= 7) {
document.getElementById("item-call").hidden=false;
document.getElementById("item-call").label="Call \""+ selectedRange + " \"";
document.getElementById("item-call").setAttribute("oncommand","DoTestSendCall("+s+")");
} else {
document.getElementById("item-call").hidden=true;
}
}
/* Enable Copy */
if(selectedRange.toString()) {
document.getElementById("item-copy").style.display="block";