You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 line
728 B

  1. // ABOUT
  2. var about_dialog;
  3. function show_about() {
  4. if(!about_dialog) {
  5. var d = new Dialog(360,480, 'About')
  6. d.make_body([
  7. ['HTML', 'info']
  8. ]);
  9. d.rows['info'].innerHTML = "<div style='padding: 16px;'><center>"
  10. +"<h2>Powered by Web Notes Framework</h2>"
  11. +"<p style='color: #888'>Open Source Python + JS Framework</p>"
  12. +"<p>Code Repository: <a href='http://code.google.com/p/wnframework'>http://code.google.com/p/wnframework</a></p>"
  13. +"<p>Forum: <a href='http://groups.google.com/group/wnframework'>http://groups.google.com/group/wnframework</a></p>"
  14. +"<p>Website: <a href='http://wnframework.org'>http://wnframework.org/</a></p>"
  15. +"</div>";
  16. about_dialog = d;
  17. }
  18. about_dialog.show();
  19. }