allow for members that can trigger events (#568)

This commit is contained in:
Jeff Williams 2014-02-01 19:25:55 -08:00
parent e007f71c86
commit d82928342c

View File

@ -27,6 +27,13 @@ var self = this;
<?js= this.partial('details.tmpl', data) ?>
<?js if (data.fires && fires.length) { ?>
<h5>Fires:</h5>
<ul><?js fires.forEach(function(f) { ?>
<li><?js= self.linkto(f) ?></li>
<?js }); ?></ul>
<?js } ?>
<?js if (data.examples && examples.length) { ?>
<h5>Example<?js= examples.length > 1? 's':'' ?></h5>
<?js= this.partial('examples.tmpl', examples) ?>