And now the tag popups hide themselves after being used

print-window-tiddler
Jeremy Ruston 2012-06-13 16:21:08 +01:00
rodzic ccfa7e1322
commit 474212dade
1 zmienionych plików z 10 dodań i 1 usunięć
core/modules/macros

Wyświetl plik

@ -21,7 +21,8 @@ exports.info = {
qualifyTiddlerTitles: {byName: true, type: "text"},
"default": {byName: true, type: "text"},
"class": {byName: true, type: "text"}
}
},
events: ["click"]
};
exports.readState = function() {
@ -63,6 +64,14 @@ exports.readPopupState = function(state) {
}
};
exports.handleEvent = function(event) {
if(event.type === "click") {
// Cancel the popup if we get a click on it
var tiddler = this.wiki.getTiddler(this.stateTitle);
this.wiki.addTiddler(new $tw.Tiddler(tiddler,{title: this.stateTitle, text: ""}),true);
}
};
exports.executeMacro = function() {
this.stateTitle = this.params.state;
if(this.hasParameter("qualifyTiddlerTitles")) {