Merge branch 'haasn-hinttags'

This commit is contained in:
Florian Bruhin 2016-08-10 09:53:41 +02:00
commit 83b15be206
3 changed files with 3 additions and 1 deletions

View File

@ -58,6 +58,7 @@ Changed
- With `new-instance-open-target` set to a tab option, the tab is now opened in
the most recently focused (instead of the last opened) window. This can be
configured with the new `new-instance-open-target.window` setting.
- Word hints now are more clever about getting the element text from some elements.
Removed
~~~~~~~

View File

@ -175,9 +175,9 @@ Contributors, sorted by the number of commits in descending order:
* Clayton Craft
* nanjekyejoannah
* Oliver Caldwell
* Niklas Haas
* Jonas Schürmann
* error800
* Niklas Haas
* Liam BEGUIN
* skinnay
* Zach-Button

View File

@ -1053,6 +1053,7 @@ class WordHinter:
"img": ["alt", "title", "src"],
"a": ["title", "href", "text"],
"input": ["name", "placeholder"],
"textarea": ["name", "placeholder"],
"button": ["text"]
})