~ubuntu-branches/ubuntu/trusty/jwchat/trusty

« back to all changes in this revision

Viewing changes to jabber_x_data.js.nl

  • 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:
15
15
                html += "<tr>";
16
16
                switch (aField.getAttribute('type')) {
17
17
                case 'hidden':
18
 
                        html += "<td colspan=2><input type=hidden name='"+aField.getAttribute('var')+"' value='"+aField.firstChild.firstChild.nodeValue+"'></td>";
 
18
                        if (aField.firstChild && aField.firstChild.firstChild)
 
19
                                html += "<td colspan=2><input type=hidden name='"+aField.getAttribute('var')+"' value='"+aField.firstChild.firstChild.nodeValue+"'></td>";
19
20
                        break;
20
21
                case 'fixed':
21
22
                        html += "<td colspan=2><b>"+aField.firstChild.firstChild.nodeValue+"</b></td>";
92
93
                        html += "<th>" + aField.getAttribute('label') + "</th>";
93
94
                        html += "<td>";
94
95
                        html += "<input type=checkbox name='" +aField.getAttribute('var') + "'";
95
 
                        if (aField.firstChild && aField.firstChild.firstChild.nodeValue == '1')
 
96
                        if (aField.firstChild && aField.firstChild.firstChild && aField.firstChild.firstChild.nodeValue == '1')
96
97
                                html += " checked";
97
98
                        html += ">";
98
99
                        html += "</td>";