Currently, if you add an @link tag for @listens, the URL gets broken by the insertion of a random event:. I looked through the codebase and couldn't figure out where event: was coming from. The only way I've found to fix it is to add a .replace('event:', '') to the method.tmpl file.
Notice that the domain has become Mozilla.event:org which is obviously invalid.
My assumption (although not verified) is that this problem is likely to exist in other places as well, such as @fires. Other than the broken URL, the remainder of the HTML is perfectly fine.
Currently, if you add an
@link
tag for@listens
, the URL gets broken by the insertion of a randomevent:
. I looked through the codebase and couldn't figure out whereevent:
was coming from. The only way I've found to fix it is to add a.replace('event:', '')
to themethod.tmpl
file.JavaScript
HTML
Notice that the domain has become
Mozilla.event:org
which is obviously invalid.My assumption (although not verified) is that this problem is likely to exist in other places as well, such as @fires. Other than the broken URL, the remainder of the HTML is perfectly fine.