Skip to content

Commit

Permalink
Moar not much
Browse files Browse the repository at this point in the history
  • Loading branch information
KevOrr committed Jan 3, 2015
1 parent b0fb5a8 commit bf7cc34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/content_script.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function walk(node)

var child, next;

if (['input', 'textarea'].indexOf(node.tagName.toLowerCase()) > -1
if (node.tagName.toLowerCase() == 'input' || node.tagName.toLowerCase() == 'textarea'
|| node.classList.indexOf('ace_editor') > -1) {
break;
}
Expand Down

0 comments on commit bf7cc34

Please sign in to comment.