Bug 302588 Test for valid recurrence values when creating an event. r=mvl npotb

This commit is contained in:
jminta%gmail.com 2007-12-21 16:35:30 +00:00
Родитель c941be8512
Коммит e6152c879d
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -388,6 +388,13 @@ function radioGroupIndexOf(radioGroup, id)
return -1; // not found
}
function hasPositiveIntegerValue(elementId)
{
var value = document.getElementById(elementId).value;
if (value && (parseInt(value) == value) && value > 0)
return true;
return false;
}
function debug(text)
{