Skip to content

Commit

Permalink
Allow disabling footer date with includeDate template config (#910)
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Cruz Viotti committed Feb 10, 2015
1 parent f922457 commit 254391e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/default/tmpl/layout.tmpl
Expand Up @@ -29,7 +29,7 @@
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc <?js= env.version.number ?></a> on <?js= (new Date()) ?>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc <?js= env.version.number ?></a><?js if(env.conf.templates && env.conf.templates.default && env.conf.templates.default.includeDate !== false) { ?> on <?js= (new Date()) ?><?js } ?>
</footer>

<script> prettyPrint(); </script>
Expand Down

0 comments on commit 254391e

Please sign in to comment.