Hello all,
I originally posted about this here
<https://groups.google.com/g/tiddlywiki/c/nY4wwuCWUpY/m/-kE7GZi9AAAJ>, but
thought it was worth sharing again. You can easily edit Danielo's excellent
2click2edit plugin to make it triple-click to edit by doing the following:
If you just navigate to and edit this tiddler:
$:/plugins/danielo515/2click2edit/ClickListener.js
go to line 36 which reads:
parent.addEventListener("dblclick",function(event){self.editTiddler.call(
self,event)});
*REPLACE* that line with the following text:
parent.addEventListener('click', function (event) { if (event.detail === 3)
{self.editTiddler.call(self,event);} });
Save that tiddler, and save/reload your wiki - you now have triple click
instead of double click.
Best,
Diego
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/01f75d56-d7cc-47e7-b5d8-0a3c4cc25d97n%40googlegroups.com.