23 lines
466 B
JavaScript
23 lines
466 B
JavaScript
(function() {
|
|
|
|
if(typeof tinymce !== 'undefined') {
|
|
|
|
tinymce.PluginManager.add('revslider_sc_button', function(editor, url) {
|
|
|
|
editor.addButton('revslider_sc_button', {
|
|
|
|
title: 'Slider Revolution Shortcode Creator',
|
|
icon: 'icon dashicons-before dashicons-update',
|
|
onclick: function() {
|
|
|
|
// OPEN THE OBJECT LIBRARY
|
|
RS_SC_WIZARD.openTemplateLibrary('tinymce');
|
|
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})(); |