mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-05-03 14:36:43 +00:00
Restore qualifyHoverTitles attribute to link widget
This commit is contained in:
@@ -28,6 +28,11 @@ LinkWidget.prototype.generate = function() {
|
||||
// Get the parameters from the attributes
|
||||
this.to = this.renderer.getAttribute("to");
|
||||
this.hover = this.renderer.getAttribute("hover");
|
||||
this.qualifyHoverTitles = this.renderer.getAttribute("qualifyHoverTitles");
|
||||
// Qualify the hover tiddler title if needed
|
||||
if(this.qualifyHoverTitles) {
|
||||
this.hover = this.hover + "-" + this.renderer.getContextScopeId();
|
||||
}
|
||||
// Determine the default link characteristics
|
||||
this.isExternal = isLinkExternal(this.to);
|
||||
if(!this.isExternal) {
|
||||
|
||||
Reference in New Issue
Block a user