mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-26 20:03:08 +00:00
9 lines
No EOL
233 B
JavaScript
9 lines
No EOL
233 B
JavaScript
|
|
function AppleInfoButton( placeElement, unknown, colorA, colorB, clickHandler){
|
|
|
|
var b = document.createElement("button");
|
|
b.appendChild(document.createTextNode("i"));
|
|
b.onclick = clickHandler;
|
|
placeElement.appendChild(b);
|
|
|
|
} |