Files
17168ERP/web/App_Script/ContentBuilder/contentbuilder/plugins/helloworld/plugin.js
2025-08-29 01:27:25 +08:00

15 lines
302 B
JavaScript

/*
Hello World Plugin
*/
(function () {
var button_html = '<button id="my_helloworld_button" title="Hello World" style="text-transform:none">hello</button>';
_cb.addButton('helloworld', button_html, '#my_helloworld_button', function () {
alert('Hello World');
});
})();