File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ function walk(node)
6
6
// http://is.gd/mwZp7E
7
7
8
8
var child , next ;
9
-
10
- if ( node . tagName . toLowerCase ( ) == 'input' || node . tagName . toLowerCase ( ) == 'textarea'
11
- || node . classList . indexOf ( 'ace_editor' ) > - 1 ) {
12
- return ;
9
+
10
+ if ( node . nodeName . toLowerCase ( ) == 'input' || node . nodeName . toLowerCase ( ) == 'textarea'
11
+ || ( node . classList && node . classList . contains ( 'ace_editor' ) ) ) {
12
+ return ;
13
13
}
14
14
15
15
switch ( node . nodeType )
Original file line number Diff line number Diff line change 1
1
{
2
2
"manifest_version" : 2 ,
3
3
"name" : " Metameater" ,
4
- "version" : " 1.0.2 " ,
4
+ "version" : " 1.0.3 " ,
5
5
"description" : " Replaces the prefix 'meta' with 'meat'." ,
6
- "developer " : { "name" : " Vague Rant" },
6
+ "author " : { "name" : " Vague Rant" },
7
7
"icons" : { "48" : " icon48.png" ,
8
8
"128" : " icon128.png" },
9
9
"content_scripts" :
You can’t perform that action at this time.
0 commit comments