1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-01-26 08:56:52 +00:00

Fixed event handler

This commit is contained in:
Jeremy Ruston 2012-06-20 17:40:08 +01:00
parent 2881b138a3
commit f5a9df1ae3

View File

@ -66,7 +66,10 @@ exports.handleEvent = function(event) {
if(this.stateTextRef) {
this.wiki.deleteTextReference(this.stateTextRef);
}
event.preventDefault();
return false;
}
return true;
};
exports.executeMacro = function() {