Changeset 13480
- Timestamp:
- 04/30/08 06:17:40 (7 months ago)
- Files:
-
- 1 modified
-
dojo/trunk/_firebug/firebug.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/_firebug/firebug.js
r13479 r13480 1010 1010 function printObject(o, i, txt, used){ 1011 1011 // Recursively trace object, indenting to represent depth for display in object inspector 1012 var br = "\n";1013 1012 var ind = " \t"; 1014 1013 txt = txt || ""; … … 1026 1025 } 1027 1026 1028 br=",\n", cnt = 0, length = objectLength(o)1027 var br=",\n", cnt = 0, length = objectLength(o) 1029 1028 1030 1029 looking: