| 1 |
|
| 2 |
(function () { |
| 3 |
tinymce.PluginManager.add('tiered-pricing-custom-mce-buttons', function (editor, url) { |
| 4 |
|
| 5 |
if (TPTAvailableCustomButtons !== undefined) { |
| 6 |
Object.keys(TPTAvailableCustomButtons).forEach(function(buttonKey) { |
| 7 |
editor.addButton(buttonKey, { |
| 8 |
text: TPTAvailableCustomButtons[buttonKey].name, |
| 9 |
tooltip: TPTAvailableCustomButtons[buttonKey].description, |
| 10 |
icon: false, |
| 11 |
onclick: function () { |
| 12 |
editor.insertContent(TPTAvailableCustomButtons[buttonKey].variableKey); |
| 13 |
} |
| 14 |
}); |
| 15 |
}); |
| 16 |
} |
| 17 |
}); |
| 18 |
})(); |