зеркало из https://github.com/mozilla/pjs.git
Bug 302588 Test for valid recurrence values when creating an event. r=mvl npotb
This commit is contained in:
Родитель
c941be8512
Коммит
e6152c879d
|
@ -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)
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче