Commit ee5167de authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Fix meta-tags interaction with @accessor's.

Generated accessors were missing meta tags and therefore crashed the
HTML-generation of meta-tags section.
parent b82c82be
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -58,6 +58,7 @@ module JsDuck
        :files => cfg[:files],
        :id => "method-" + name,
        :deprecated => cfg[:deprecated],
        :meta => cfg[:meta],
      }
    end

@@ -80,6 +81,7 @@ module JsDuck
        :files => cfg[:files],
        :id => "method-" + name,
        :deprecated => cfg[:deprecated],
        :meta => cfg[:meta]
      }
    end

@@ -116,6 +118,7 @@ module JsDuck
        :files => cfg[:files],
        :id => "event-" + name,
        :deprecated => cfg[:deprecated],
        :meta => cfg[:meta]
      }
    end