mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-25 09:30:28 +00:00
Fix typo
This commit is contained in:
parent
2a571b4f5f
commit
a99f912bad
@ -27,7 +27,6 @@ LinkWidget.prototype = new Widget();
|
||||
Render this widget into the DOM
|
||||
*/
|
||||
LinkWidget.prototype.render = function(parent,nextSibling) {
|
||||
var self = this;
|
||||
// Save the parent dom node
|
||||
this.parentDomNode = parent;
|
||||
// Compute our attributes
|
||||
@ -53,6 +52,7 @@ LinkWidget.prototype.render = function(parent,nextSibling) {
|
||||
Render this widget into the DOM
|
||||
*/
|
||||
LinkWidget.prototype.renderLink = function(parent,nextSibling) {
|
||||
var self = this;
|
||||
// Create our element
|
||||
var domNode = this.document.createElement("a");
|
||||
// Assign classes
|
||||
|
Loading…
Reference in New Issue
Block a user