mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-11-09 20:12:59 +00:00
Add tiddler info dropdown
Including backlinks
This commit is contained in:
@@ -90,17 +90,22 @@ ButtonWidget.prototype.setTiddler = function() {
|
||||
};
|
||||
|
||||
ButtonWidget.prototype.handleClickEvent = function(event) {
|
||||
var handled = false;
|
||||
if(this.message) {
|
||||
this.dispatchMessage(event);
|
||||
handled = true;
|
||||
}
|
||||
if(this.popup) {
|
||||
this.triggerPopup(event);
|
||||
handled = true;
|
||||
}
|
||||
if(this.set && this.setTo) {
|
||||
this.setTiddler();
|
||||
handled = true;
|
||||
}
|
||||
event.stopPropagation();
|
||||
event.preventDefault();
|
||||
return false;
|
||||
return handled;
|
||||
};
|
||||
|
||||
ButtonWidget.prototype.handleMouseOverOrOutEvent = function(event) {
|
||||
|
||||
Reference in New Issue
Block a user