1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-09-09 22:36:05 +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

@@ -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;