how to add plug-ins?
See original GitHub issueIssue Description
I copy sample from your demo site. But it not work (not show drop-down menu on image button). http://krestovskyisland.ru/index.html
what am I doing wrong?
<script src="js/trumb/plugins/upload/trumbowyg.upload.min.js"></script>
<script src="js/trumb/plugins/pasteimage/trumbowyg.pasteimage.min.js"></script>
<script>
/** Default editor configuration **/
$('#editor').trumbowyg({
plugins: {
btnsDef: {
// Customizables dropdowns
image: {
dropdown: ['insertImage', 'upload'],
ico: 'insertImage'
}
},
btns: [
['viewHTML'],
['undo', 'redo'],
['formatting'],
'btnGrp-design',
['link'],
['image'],
'btnGrp-justify',
'btnGrp-lists',
['foreColor', 'backColor'],
['preformatted'],
['horizontalRule'],
['fullscreen']
]
}
});
Issue Analytics
- State:
- Created 7 years ago
- Comments:14 (5 by maintainers)
Top Results From Across the Web
How to Install, Add, and Use WordPress Plugins - HubSpot Blog
1. In your WordPress dashboard, choose Plugins > Add new. · 2. Search for a plugin with the search bar in the top...
Read more >Install plugins - Bitnami Documentation
Browse to the “Plugins” menu page and then click the “Add New” button to search for plugins. · Once you find a plugin,...
Read more >How to Install a WordPress Plugin - Step by Step for Beginners
First, you need to download the plugin from the source (which will be a zip file). Next, you need to go to WordPress...
Read more >Installing Plugins - Official BukkitWiki - Fandom
Installing Most Plugins · Download a plugin of your choice. · Place the .jar and any other files in your plugins directory. ·...
Read more >Installing Plugins - FL Studio
How to Install VST / AU Plugins (Instruments & Effects) ... Install the plugin - We strongly recommend you run the plugin's installer...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I have written some short snippet to create a new plugin.
@lcompare