1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 01:33:16 +00:00

Add support for "nomatch" to the reveal macro

This commit is contained in:
Jeremy Ruston 2012-07-15 22:34:48 +01:00
parent 7346a146f0
commit 401b804931

View File

@ -52,6 +52,10 @@ exports.readState = function() {
case "match":
this.readMatchState(state);
break;
case "nomatch":
this.readMatchState(state);
this.isOpen = !this.isOpen;
break;
}
}
};