~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/media/common/util.js

  • Committer: mattgiuca
  • Date: 2008-01-11 08:44:39 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:188
browser.js: Can now (shakily) handle directory listings. (lots of code!)
Minor changes to HTML, CSS, and util.js.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 */
39
39
function dom_make_text_elem(tagname, text)
40
40
{
 
41
    if (text == null) text = "";
41
42
    var elem = document.createElement(tagname);
42
43
    elem.appendChild(document.createTextNode(text));
43
44
    return elem;
54
55
 */
55
56
function dom_make_link_elem(tagname, text, href, onclick)
56
57
{
 
58
    if (text == null) text = "";
 
59
    if (href == null) href = "";
57
60
    var elem = document.createElement(tagname);
58
61
    var link = document.createElement("a");
59
62
    link.setAttribute("href", encodeURI(href));
74
77
 */
75
78
function nice_filesize(bytes)
76
79
{
 
80
    if (bytes == null) return "";
77
81
    var size;
78
82
    if (bytes < 1024)
79
 
        return bytes.toString() + " bytes";
 
83
        return bytes.toString() + " B";
80
84
    size = bytes / 1024;
81
85
    if (size < 1024)
82
86
        return size.toFixed(1) + " kB";