1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-17 19:09:55 +00:00

Use empty string as default value for reveal widget

This commit is contained in:
Jeremy Ruston 2013-07-03 16:00:26 +01:00
parent 627dba01e4
commit e583c1d72d

View File

@ -25,7 +25,7 @@ RevealWidget.prototype.generate = function() {
this.type = this.renderer.getAttribute("type");
this.text = this.renderer.getAttribute("text");
this.position = this.renderer.getAttribute("position");
this["default"] = this.renderer.getAttribute("default");
this["default"] = this.renderer.getAttribute("default","");
this.qualifyTiddlerTitles = this.renderer.getAttribute("qualifyTiddlerTitles");
this["class"] = this.renderer.getAttribute("class");
this.animate = this.renderer.getAttribute("animate","no");