add support for following some buttons on mobile.twitter.com

The buttons are:

  * reply
  * retweet
  * favorite
  * direct message
  * drop down menu
This commit is contained in:
usk 2017-11-05 10:06:26 +09:00
parent 516a701ebb
commit 764d7a34bd

View file

@ -4,7 +4,8 @@ import * as dom from 'shared/utils/dom';
const TARGET_SELECTOR = [ const TARGET_SELECTOR = [
'a', 'button', 'input', 'textarea', 'area', 'a', 'button', 'input', 'textarea', 'area',
'[contenteditable=true]', '[contenteditable=""]', '[tabindex]' '[contenteditable=true]', '[contenteditable=""]', '[tabindex]',
'[role="button"]'
].join(','); ].join(',');