1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-04-06 10:46:57 +00:00

Fix problem with radio widget refreshing

This commit is contained in:
Jermolene 2013-12-16 08:52:18 +00:00
parent 65e3780cc1
commit 37a46adac8

View File

@ -98,7 +98,7 @@ RadioWidget.prototype.execute = function() {
this.radioField = this.getAttribute("field");
this.radioValue = this.getAttribute("value");
this.radioClass = this.getAttribute("class","");
if (this.radioClass !== "") {
if(this.radioClass !== "") {
this.radioClass += " ";
}
this.radioClass += "tw-radio";
@ -117,7 +117,7 @@ RadioWidget.prototype.refresh = function(changedTiddlers) {
} else {
var refreshed = false;
if(changedTiddlers[this.radioTitle]) {
this.inputDomNode.checked = this.getValue();
this.inputDomNode.checked = this.getValue() === this.radioValue;
refreshed = true;
}
return this.refreshChildren(changedTiddlers) || refreshed;