home *** CD-ROM | disk | FTP | other *** search
/ Freelog 116 / FreelogNo116-JuilletSeptembre2013.iso / Musique / amarok / amarok-x86-setup-2.7.0-1.exe / share / apps / plasma / dashboard / button / genericButton.js
Text File  |  2013-04-28  |  229b  |  8 lines

  1.  
  2.  
  3. function createGenericButton(placeElement,buttonText,clickHandler) {
  4.   var b = document.createElement("button");
  5.   b.appendChild(document.createTextNode(buttonText));
  6.   b.onclick = clickHandler;
  7.   placeElement.appendChild(b);
  8. }