|
|
|
|
|
by sophistication
2782 days ago
|
|
Notably he was also answering other questions in the AMA, so it possibly only took him 2 minutes. It is not a difficult feature to implement anyhow, it probably went like this: vim tools/Text.js
self.addEventListener('click', function (e) {
if (e.detail === 3) {
self.selectAll();
}
});
:wq
git add tools/Text.js
git commit -m "Add triple click select all"
git push origin master
Done.
|
|