public
Description: Memo is a shoppinglist application for Pocket PC and other devices that can run javascript.
Homepage: http://github.com/joakimk/memo/wikis/memo
Clone URL: git://github.com/joakimk/memo.git
Click here to lend your support to: memo and make a donation at www.pledgie.com !
memo / index.html
100755 54 lines (47 sloc) 1.526 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
    <title>Memo</title>
    <link rel="stylesheet" href="style.css" type="text/css" media="screen" />
    <script src="memo.js" type="text/javascript" charset="utf-8"></script>
  </head>
  <body>
    <div id="loading">
      Loading...
    </div>
    <div id="content" style="display:none">
      <a href="javascript:add_item()" class="button no_float">
        Add item
      </a>
      
      <a href="javascript:delete_item()" class="button no_float" id="delete_item_button">
        Delete item
      </a>
      
      <div id="item_delete" style="display: none;">
        <h3>Delete item</h3>
        <div id="item_delete_list">
        </div>
        
        <a href="javascript:close_delete_item()" class="button no_float">
          Cancel
        </a>
      </div>
      
      <div id="item_form" style="display: none;">
        <h3>New item</h3>
        <input id="item_name" />
        <a href="javascript:save_item()" class="button no_float">
          Save
        </a>
        <a href="javascript:cancel_item()" class="button no_float">
          Cancel
        </a>
      </div>
        
      <h3>Need</h3>
      <div id="need">
      </div>
      
      <h3>Have</h3>
      <div id="have">
      </div>
    </div>
  </body>
</html>