Set boolean value to HTMLInputElement.checked

See http://www.whatwg.org/specs/web-apps/current-work/multipage/the-input-element.html#attr-input-checked
This commit is contained in:
Frederic Junod
2013-11-12 10:24:32 +01:00
parent 15053cbe56
commit d3be7d9d18

View File

@@ -164,7 +164,7 @@ ol.dom.Input.prototype.handleInputChanged_ = function() {
* @private
*/
ol.dom.Input.prototype.handleCheckedChanged_ = function() {
this.target_.checked = this.getChecked() ? 'checked' : undefined;
this.target_.checked = this.getChecked();
};