|
|
@ -61,25 +61,27 @@ WizardBase.Screen = new Class({ |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
window.Wizard = new WizardBase([ |
|
|
|
{ |
|
|
|
'title': 'Fill in your username and password', |
|
|
|
'Description': 'Outside blabla', |
|
|
|
'tab': 'general', |
|
|
|
'fields': ['username', 'password'] |
|
|
|
}, |
|
|
|
{ |
|
|
|
'title': 'What do you use to download your movies', |
|
|
|
'answers': [ |
|
|
|
{'name': 'nzb', 'label': 'Usenet'}, |
|
|
|
{'name': 'torrent', 'label': 'Torrents'} |
|
|
|
] |
|
|
|
}, |
|
|
|
{ |
|
|
|
'title': 'Do you have a login for any of the following sites', |
|
|
|
'tab': 'providers', |
|
|
|
'needs': function(){ |
|
|
|
return self.config_nzb || self.config_torrent |
|
|
|
window.addEvent('domready', function(){ |
|
|
|
window.Wizard = new WizardBase([ |
|
|
|
{ |
|
|
|
'title': 'Fill in your username and password', |
|
|
|
'Description': 'Outside blabla', |
|
|
|
'tab': 'general', |
|
|
|
'fields': ['username', 'password'] |
|
|
|
}, |
|
|
|
{ |
|
|
|
'title': 'What do you use to download your movies', |
|
|
|
'answers': [ |
|
|
|
{'name': 'nzb', 'label': 'Usenet'}, |
|
|
|
{'name': 'torrent', 'label': 'Torrents'} |
|
|
|
] |
|
|
|
}, |
|
|
|
{ |
|
|
|
'title': 'Do you have a login for any of the following sites', |
|
|
|
'tab': 'providers', |
|
|
|
'needs': function(){ |
|
|
|
return self.config_nzb || self.config_torrent |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
]) |
|
|
|
]) |
|
|
|
}); |
|
|
|