jonny
10/07/2019, 7:22 PMdefine([], function () {
var render = function (ctx) {
var portlet = ctx.portlet;
var html = "\n<!DOCTYPE html>";
html += "\n<html>";
html += "\n<body>";
html += "\n<button type=\"button\" onclick=\"clickMe()\">Click Me!</button>"; // <- clickMe not found..
html += "\n<script>";
html += "\nfunction clickMe() {";
html += "\n alert('Hello World');"
html += "\n}";
html += "\n</script>";
html += "\n</body>";
html += "\n</html>\n";
portlet.html = html;
};
return { render: render };
});