0.0.6 • Published 5 years ago

grapesjs-plugin-button-event v0.0.6

Weekly downloads
5
License
BSD-2-Clause
Repository
github
Last release
5 years ago

GrapesJS Plugin Button event

This plugin enables you to add button with event emitters to grapesJs panels.

Summary

Download

  • npm i grapesjs-plugin-button-event

Usage

<link href="path/to/grapes.min.css" rel="stylesheet"/>
<link href="path/to/grapesjs-plugin-button-event.css" rel="stylesheet"/>

<script src="path/to/grapes.min.js"></script>
<script src="path/to/grapesjs-plugin-button-event.min.js"></script>

<div id="gjs"></div>

<script type="text/javascript">
  var editor = grapesjs.init({
      container : '#gjs',
      plugins: ['gjs-plugin-button-event'],
      pluginsOpts: {
        'gjs-plugin-button-event': {/* ...options */}
      }
  });
</script>

Development

Clone the repository

$ git clone https://github.com/chaitanya11/grapesjs-plugin-button-event.git
$ cd grapesjs-plugin-button-event

Install it

$ npm i

The plugin relies on GrapesJS via peerDependencies so you have to install it manually (without adding it to package.json)

$ npm i grapesjs --no-save

Start the dev server

$ npm start

License

BSD 3-Clause