Skip to content

Commit

Permalink
Merge pull request #1 from acabal/up-arrow-compat
Browse files Browse the repository at this point in the history
Check for up arrow character
  • Loading branch information
mpdeimos committed Aug 20, 2014
2 parents 1afd240 + 8aab711 commit 2058238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension.js
Expand Up @@ -42,7 +42,7 @@ function edit(hide)

function recursiveEdit(widget, hide)
{
if (widget.text === '\u25BE' || // regular text drop down arrow (3.10)
if (widget.text === '\u25BE' || widget.text === '\u25B4' || // regular text drop down arrow (3.10)
(widget.has_style_class_name && widget.has_style_class_name('popup-menu-arrow'))) // image drop down arrow (3.12)
{
if (hide)
Expand Down

0 comments on commit 2058238

Please sign in to comment.