diff options
author | MatiasStorm <mat-435@hotmail.com> | 2020-05-12 16:45:58 +0200 |
---|---|---|
committer | MatiasStorm <mat-435@hotmail.com> | 2020-05-12 16:45:58 +0200 |
commit | 41b1a9aabd05cd442977bcd4be7919806e7179a5 (patch) | |
tree | 2ca9b0101c3b3053d7a3a8c85a9f88306cbf2600 /src | |
parent | 0600963862460aaf2250ffe7f2e84ce340d088f8 (diff) |
Reverted change in getTargets
Diffstat (limited to 'src')
-rw-r--r-- | src/content/presenters/FollowPresenter.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/presenters/FollowPresenter.ts b/src/content/presenters/FollowPresenter.ts index b928b3f..e9105bc 100644 --- a/src/content/presenters/FollowPresenter.ts +++ b/src/content/presenters/FollowPresenter.ts @@ -130,7 +130,7 @@ export class FollowPresenterImpl implements FollowPresenter { const filtered = Array.prototype.filter.call( all, (element: HTMLElement) => { - const style = element.style; + const style = window.getComputedStyle(element); // AREA's 'display' in Browser style is 'none' return ( |