JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fix is_input_hidden_tok
authorJason Woofenden <jason@jasonwoof.com>
Wed, 23 Dec 2015 21:15:02 +0000 (16:15 -0500)
committerJason Woofenden <jason@jasonwoof.com>
Wed, 23 Dec 2015 21:15:02 +0000 (16:15 -0500)
parse-html.coffee

index 255892f..fee4202 100644 (file)
@@ -195,8 +195,8 @@ is_space_tok = (t) ->
        return t.type is TYPE_TEXT && t.text.length is 1 and space_chars.indexOf(t.text) > -1
 
 is_input_hidden_tok = (t) ->
-       return unless t.type is TYPE_START_TAG
-       for a of t.attrs_a
+       return false unless t.type is TYPE_START_TAG
+       for a in t.attrs_a
                if a[0] is 'type'
                        if a[1].toLowerCase() is 'hidden'
                                return true