bug:2480
datepicker need to use removeAttr jquery function to remove an attribute. git-svn-id: http://piwigo.org/svn/trunk@12519 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
fa500d36ec
commit
458e49b360
1 changed files with 4 additions and 4 deletions
|
|
@ -43,8 +43,8 @@ function pwg_common_initialization_datepicker(buttonImageName, day, month, year,
|
||||||
m = array_date[1];
|
m = array_date[1];
|
||||||
|
|
||||||
// Init list
|
// Init list
|
||||||
$(day + " option").attr("disabled", "");
|
$(day + " option").removeAttr("disabled");
|
||||||
$(month + " option").attr("disabled", "");
|
$(month + " option").removeAttr("disabled");
|
||||||
|
|
||||||
var daysInMonth = 32 - new Date(y, m - 1, 32).getDate();
|
var daysInMonth = 32 - new Date(y, m - 1, 32).getDate();
|
||||||
$(day + " option:gt(" + (daysInMonth) +")").attr("disabled", "disabled");
|
$(day + " option:gt(" + (daysInMonth) +")").attr("disabled", "disabled");
|
||||||
|
|
@ -77,7 +77,7 @@ function pwg_common_initialization_datepicker(buttonImageName, day, month, year,
|
||||||
$(month + " option:" + op_cmp + "(" + (m_cmp) +")").attr("disabled", "disabled");
|
$(month + " option:" + op_cmp + "(" + (m_cmp) +")").attr("disabled", "disabled");
|
||||||
if (op_cmp == "lt")
|
if (op_cmp == "lt")
|
||||||
{
|
{
|
||||||
$(month + " option:eq(" + (0) +")").attr("disabled", "");
|
$(month + " option:eq(" + (0) +")").removeAttr("disabled");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m == m_cmp)
|
if (m == m_cmp)
|
||||||
|
|
@ -85,7 +85,7 @@ function pwg_common_initialization_datepicker(buttonImageName, day, month, year,
|
||||||
$(day + " option:" + op_cmp + "(" + (d_cmp) +")").attr("disabled", "disabled");
|
$(day + " option:" + op_cmp + "(" + (d_cmp) +")").attr("disabled", "disabled");
|
||||||
if (op_cmp == "lt")
|
if (op_cmp == "lt")
|
||||||
{
|
{
|
||||||
$(day + " option:eq(" + (0) +")").attr("disabled", "");
|
$(day + " option:eq(" + (0) +")").removeAttr("disabled");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue