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

« back to all changes in this revision

Viewing changes to console/console.js

  • Committer: drtomc
  • Date: 2008-01-23 22:21:46 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:279
Fix the fix to the for loop. :-)

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
 
74
74
function make_post_body(args)
75
75
{
76
 
    var first = true;
77
76
    var qs = '';
78
77
    for (key in args)
79
78
    {
85
84
        var i;
86
85
        for (i=0; i<vals.length; i++)
87
86
        {
88
 
            if (first)
89
 
            {
90
 
                first = false;
91
 
            }
92
 
            else
 
87
            if (i > 0)
93
88
            {
94
89
                qs += "&";
95
90
            }