@ -8,7 +8,7 @@ define(
'Settings/MediaManagement/Naming/Model' ,
'Settings/MediaManagement/Naming/Model' ,
'Settings/MediaManagement/Layout' ,
'Settings/MediaManagement/Layout' ,
'Settings/Quality/QualityLayout' ,
'Settings/Quality/QualityLayout' ,
'Settings/Indexers/ CollectionView ',
'Settings/Indexers/ Layout ',
'Settings/Indexers/Collection' ,
'Settings/Indexers/Collection' ,
'Settings/DownloadClient/Layout' ,
'Settings/DownloadClient/Layout' ,
'Settings/Notifications/CollectionView' ,
'Settings/Notifications/CollectionView' ,
@ -23,7 +23,7 @@ define(
NamingModel ,
NamingModel ,
MediaManagementLayout ,
MediaManagementLayout ,
QualityLayout ,
QualityLayout ,
Indexer CollectionView ,
Indexer Layout ,
IndexerCollection ,
IndexerCollection ,
DownloadClientLayout ,
DownloadClientLayout ,
NotificationCollectionView ,
NotificationCollectionView ,
@ -157,14 +157,14 @@ define(
this . indexerSettings . fetch ( ) ,
this . indexerSettings . fetch ( ) ,
this . notificationSettings . fetch ( )
this . notificationSettings . fetch ( )
) . done ( function ( ) {
) . done ( function ( ) {
self . loading . $el . hide ( ) ;
self . loading . $el . hide ( ) ;
self . mediaManagement . show ( new MediaManagementLayout ( { settings : self . settings , namingSettings : self . namingSettings } ) ) ;
self . mediaManagement . show ( new MediaManagementLayout ( { settings : self . settings , namingSettings : self . namingSettings } ) ) ;
self . quality . show ( new QualityLayout ( { settings : self . settings } ) ) ;
self . quality . show ( new QualityLayout ( { settings : self . settings } ) ) ;
self . indexers . show ( new Indexer CollectionView( { c ollection: self . indexerSettings } ) ) ;
self . indexers . show ( new Indexer Layout( { settings : self . settings , indexersC ollection: self . indexerSettings } ) ) ;
self . downloadClient . show ( new DownloadClientLayout ( { model : self . settings } ) ) ;
self . downloadClient . show ( new DownloadClientLayout ( { model : self . settings } ) ) ;
self . notifications . show ( new NotificationCollectionView ( { collection : self . notificationSettings } ) ) ;
self . notifications . show ( new NotificationCollectionView ( { collection : self . notificationSettings } ) ) ;
self . general . show ( new GeneralView ( { model : self . generalSettings } ) ) ;
self . general . show ( new GeneralView ( { model : self . generalSettings } ) ) ;
self . misc . show ( new MiscView ( { model : self . settings } ) ) ;
self . misc . show ( new MiscView ( { model : self . settings } ) ) ;
} ) ;
} ) ;
} ,
} ,