diff --git a/qutebrowser/browser/webelem.py b/qutebrowser/browser/webelem.py index 2b11bee40..30355ad1a 100644 --- a/qutebrowser/browser/webelem.py +++ b/qutebrowser/browser/webelem.py @@ -42,7 +42,9 @@ Group = enum.Enum('Group', ['all', 'links', 'images', 'url', 'inputs']) SELECTORS = { Group.all: ('a, area, textarea, select, input:not([type=hidden]), button, ' 'frame, iframe, link, [onclick], [onmousedown], [role=link], ' - '[role=option], [role=button], img, [ng-click], [ngClick], [data-ng-click], [x-ng-click]'), + '[role=option], [role=button], img, ' + # Angular 1 selectors + '[ng-click], [ngClick], [data-ng-click], [x-ng-click]'), Group.links: 'a[href], area[href], link[href], [role=link][href]', Group.images: 'img', Group.url: '[src], [href]',