You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
potato-launcher/src/js/components/appsFormButton.riot

33 lines
881 B

<shiny-apps-form-button>
<button class="button button--icon m-bottom-0" onclick={ (event) => { handleClick(event) } }>
<svg class="icon icon--big" aria-hidden="true">
<use xlink:href="symbol-defs.svg#icon-add"></use>
</svg>
</button>
<script>
// store for sidebar
import formStore from './../stores/form.js'
/**
* example to open sidebar form
*
* @author Björn Hase
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.node001.net/tiny-components/sidebar-form
*
*/
export default {
/**
* trigger event to open form
*
*/
handleClick() {
formStore.trigger('open')
}
}
</script>
</shiny-apps-form-button>