mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-12 19:28:42 +00:00
fix bug when used from ipod
This commit is contained in:
parent
1bf2fb47b7
commit
0208e59ad6
1 changed files with 5 additions and 5 deletions
|
@ -194,17 +194,17 @@ Deluge.Widgets.AddTorrent.Url = new Class({
|
|||
|
||||
this.form = new Element('form');
|
||||
this.urlInput = new Element('input', {
|
||||
type: 'text',
|
||||
id: 'urlInput',
|
||||
name: 'urlInput'
|
||||
'type': 'text',
|
||||
'id': 'urlInput',
|
||||
'name': 'urlInput'
|
||||
});
|
||||
this.okButton = new Element('button');
|
||||
this.okButton.set('text', _('Ok'));
|
||||
this.cancelButton = new Element('button');
|
||||
this.cancelButton.set('text', _('Cancel'));
|
||||
this.form.grab(new Element('label', {
|
||||
for: 'urlInput',
|
||||
text: _('Url'),
|
||||
'for': 'urlInput',
|
||||
'text': _('Url'),
|
||||
}).addClass('fluid'));
|
||||
this.form.grab(this.urlInput).grab(new Element('br'));
|
||||
this.form.grab(this.okButton).grab(this.cancelButton);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue