Add special treatment of value field for textarea element.

This commit is contained in:
Irakli Gozalishvili 2016-01-17 22:56:11 -08:00
Родитель c548122ffe
Коммит cb197002cf
1 изменённых файлов: 8 добавлений и 3 удалений

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

@ -79,9 +79,14 @@ export class VirtualNode {
}
}
// Special handlind of input.value
else if (key === 'value' &&
tagName.toLowerCase() === 'input' &&
property != null) {
else if
( key === 'value' &&
property != null &&
( tagName.toLowerCase() === 'input' ||
tagName.toLowerCase() === 'textarea'
)
)
{
if (hooks == null) {
hooks = {}
}