Advertisement
Guest User

app.js

a guest
Oct 9th, 2013
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. /**
  2. * Instance of the Ubuntu UI used to provide an interface to the
  3. * Ubuntu SDK HTML5 theme
  4. * @type {UbuntuUI}
  5. */
  6. var UI = new UbuntuUI();
  7.  
  8.  
  9. /**
  10. *Function that performs the search to wikipedia
  11. */
  12. function search()
  13. {
  14. var value=document.getElementById("wikisearch").value;
  15.  
  16. document.getElementById("main").innerHTML=value;
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement