1 | initial version |
nm, I figured it out from the code. is there any documentation of this?
<script>
// div.compute turns all "compute" divs into sagecells
// minimal template means there's no cell editing for the user
// autoeval means there's no stupid "click here to activate me!" necessary
// hide: evalButton means the stupid button itself is gone
$(function() {
sagecell.makeSagecell({inputLocation: 'div.compute', template: sagecell.templates.minimal, autoeval: true, hide: ['evalButton']});
});
</script>