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

« back to all changes in this revision

Viewing changes to www/media/browser/browser.js

  • Committer: mattgiuca
  • Date: 2008-01-17 03:24:33 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:239
browser.js: Fixed array loop, made normal for loop (for each loops break
    after adding methods to array, silly bugger)
util.js: minor

Show diffs side-by-side

added added

removed removed

Lines of Context:
340
340
    var dom_path = document.getElementById("path");
341
341
    var href_path = make_path(this_app);
342
342
    var nav_path = "";
 
343
    var dir;
343
344
 
344
345
    /* Also set the document title */
345
346
    document.title = path_basename(path) + " - IVLE";
346
347
    /* Create all of the paths */
347
 
    for each (var dir in path.split("/"))
 
348
    var pathlist = path.split("/");
 
349
    for (var i=0; i<pathlist.length; i++)
348
350
    {
 
351
        dir = pathlist[i];
349
352
        if (dir == "") continue;
350
353
        /* Make an 'a' element */
351
354
        href_path = path_join(href_path, dir);