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

« back to all changes in this revision

Viewing changes to ivle/webapp/filesystem/browser/media/specialhome.js

  • Committer: William Grant
  • Date: 2009-03-25 11:03:05 UTC
  • Revision ID: grantw@unimelb.edu.au-20090325110305-bdfuuqjpion1oc8i
Rename length to len in specialhome.js to please IE8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
253
253
 */
254
254
function obj_length(obj)
255
255
{
256
 
    length = 0;
 
256
    len = 0;
257
257
    for (prop in obj)
258
 
        length++;
259
 
    return length;
 
258
        len++;
 
259
    return len;
260
260
}