Browse Source

Wizzard in domready

pull/51/merge
Ruud 14 years ago
parent
commit
42bc7d7579
  1. 44
      couchpotato/core/plugins/wizard/static/wizard.js

44
couchpotato/core/plugins/wizard/static/wizard.js

@ -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
}
}
}
])
])
});

Loading…
Cancel
Save