1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-28 23:10:46 +00:00

Fix changed attribute detection in tiddler widget

This commit is contained in:
Jeremy Ruston 2013-10-29 09:04:18 +00:00
parent bf48e6f8a1
commit 371c8ab45a

View File

@ -56,7 +56,7 @@ Selectively refreshes the widget if needed. Returns true if the widget or any of
*/
TiddlerWidget.prototype.refresh = function(changedTiddlers) {
var changedAttributes = this.computeAttributes();
if(changedAttributes.name || changedAttributes.value) {
if(changedAttributes.title) {
this.refreshSelf();
return true;
} else {