2015-10-15 15:05:41 +02:00
|
|
|
<template name="toolbar">
|
|
|
|
|
<div id='toolbar'>
|
|
|
|
|
<div class="btn-group">
|
|
|
|
|
{{ #each button }}
|
2015-10-22 11:12:20 +02:00
|
|
|
{{ >simpleToolbarButton}}
|
2015-10-15 15:05:41 +02:00
|
|
|
{{ /each }}
|
|
|
|
|
|
|
|
|
|
{{ #if includePlayClipButton }}
|
2015-10-22 11:12:20 +02:00
|
|
|
{{ >playClipButton activeViewport=activeViewport}}
|
2015-10-15 15:05:41 +02:00
|
|
|
{{ /if }}
|
|
|
|
|
|
|
|
|
|
{{ #if includeLayoutButton }}
|
2015-10-22 11:12:20 +02:00
|
|
|
{{ >layoutButton viewportRows=viewportRows viewportColumns=viewportColumns}}
|
2015-10-15 15:05:41 +02:00
|
|
|
{{ /if }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|