~ubuntu-branches/ubuntu/lucid/jwchat/lucid

« back to all changes in this revision

Viewing changes to groupchat_invite_dialog.html.it

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2008-08-24 15:02:53 UTC
  • mfrom: (3.1.4 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080824150253-h0z39rzjmo4lc1k5
Tags: 1.0beta3-3
* Clean up README.Debian. (Closes: #481320)
* Add brazilian debconf messages translation. (Closes: #481522)
* Add swedish debconf messages translation. (Closes: #494887)
* Add italian debconf messages translation. (Closes: #495780)
* Add russian debconf messages translation. (Closes: #495573)
* Add finnish debconf messages translation. (Closes: #496227)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
6
6
    <script src="switchStyle.js"></script>
7
7
    <script src="xmlextras.js"></script>
8
 
    <script src="JSJaCPacket.js"></script>
 
8
    <script src="jsjac.js"></script>
9
9
    <script>
10
10
      <!--
11
11
 
37
37
        // fill selector with users from main roster
38
38
        var users_selector = document.getElementById('users_selector');
39
39
        var optidx = 0;
40
 
        for (var i in srcW.roster.users) {
 
40
        for (var i=0; i<srcW.roster.users.length; i++) {
41
41
                if (typeof(srcW.roster.users[i].roster) != 'undefined' || srcW.isGateway(srcW.roster.users[i].jid)) // skip groupchats and gateways
42
42
                        continue;
43
43
                users_selector[optidx++] = new Option(srcW.roster.users[i].name,srcW.roster.users[i].jid);