#
GrapesJS Tooltip
Simple, CSS only, tooltip component for GrapesJS
#
Summary
- Plugin name:
grapesjs-tooltip
- Components
tooltip
- Blocks
tooltip
#
Options
#
Download
- CDN
https://unpkg.com/grapesjs-tooltip
- NPM
npm i grapesjs-tooltip
- GIT
git clone https://github.com/artf/grapesjs-tooltip.git
#
Usage
Directly in the browser
<link href="https://unpkg.com/grapesjs/dist/css/grapes.min.css" rel="stylesheet"/>
<script src="https://unpkg.com/grapesjs"></script>
<script src="path/to/grapesjs-tooltip.min.js"></script>
<div id="gjs"></div>
<script type="text/javascript">
var editor = grapesjs.init({
container : '#gjs',
// ...
plugins: ['grapesjs-tooltip'],
pluginsOpts: {
'grapesjs-tooltip': { /* options */ }
}
});
</script>
Modern javascript
import grapesjs from 'grapesjs';
import pluginTooltip from 'grapesjs-tooltip';
const editor = grapesjs.init({
container : '#gjs',
// ...
plugins: [pluginTooltip],
pluginsOpts: {
[pluginTooltip]: { /* options */ }
}
// or
plugins: [
editor => pluginTooltip(editor, { /* options */ }),
],
});
#
Development
Clone the repository
$ git clone https://github.com/artf/grapesjs-tooltip.git
$ cd grapesjs-tooltip
Install dependencies
$ npm i
Start the dev server
$ npm start
#
License
BSD 3-Clause