repo.or.cz
/
personal-kdebase.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
not quite so much needs to be delayed to the init() function
[personal-kdebase.git]
/
workspace
/
plasma
/
scriptengines
/
webkit
/
dashboard
/
AppleClasses
/
AppleInfoButton.js
blob
c2ed75828a223c8a37f1ee8e1354a9a9b0298985
1
2
function AppleInfoButton( placeElement, unknown, colorA, colorB, clickHandler){
3
4
var b = document.createElement("button");
5
b.appendChild(document.createTextNode("i"));
6
b.onclick = clickHandler;
7
placeElement.appendChild(b);
8
9
}