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

Remove unused class attribute from reveal widget

This commit is contained in:
Jeremy Ruston 2013-10-31 21:59:53 +00:00
parent 45f0f46fdf
commit 01a0c9481e

View File

@ -84,7 +84,6 @@ RevealWidget.prototype.execute = function() {
this.position = this.getAttribute("position");
this["default"] = this.getAttribute("default","");
this.qualifyTiddlerTitles = this.getAttribute("qualifyTiddlerTitles");
this["class"] = this.getAttribute("class");
this.animate = this.getAttribute("animate","no");
// Compute the title of the state tiddler and read it
this.stateTitle = this.state;
@ -148,7 +147,7 @@ Selectively refreshes the widget if needed. Returns true if the widget or any of
*/
RevealWidget.prototype.refresh = function(changedTiddlers) {
var changedAttributes = this.computeAttributes();
if(changedAttributes.state || changedAttributes.type || changedAttributes.text || changedAttributes.position || changedAttributes["default"] || changedAttributes.qualifyTiddlerTitles || changedAttributes["class"] || changedAttributes.animate || changedTiddlers[this.stateTitle]) {
if(changedAttributes.state || changedAttributes.type || changedAttributes.text || changedAttributes.position || changedAttributes["default"] || changedAttributes.qualifyTiddlerTitles || changedAttributes.animate || changedTiddlers[this.stateTitle]) {
this.refreshSelf();
return true;
} else {