Radarr/UI/Settings/Naming/NamingView.js

43 lines
1.2 KiB
JavaScript
Raw Normal View History

2013-03-04 00:09:43 +00:00
'use strict';
2013-04-25 04:27:49 +00:00
define(['app', 'Settings/Naming/NamingModel'], function () {
2013-03-04 00:09:43 +00:00
NzbDrone.Settings.Naming.NamingView = Backbone.Marionette.ItemView.extend({
template : 'Settings/Naming/NamingTemplate',
2013-03-04 02:02:57 +00:00
className: 'form-horizontal',
2013-03-04 00:09:43 +00:00
ui: {
2013-03-06 18:41:13 +00:00
tooltip: '[class^="help-inline"] i'
2013-03-04 00:09:43 +00:00
},
initialize: function () {
2013-04-25 04:27:49 +00:00
this.model = new NzbDrone.Settings.Naming.NamingModel();
this.model.fetch();
NzbDrone.vent.on(NzbDrone.Commands.SaveSettings, this.saveSettings, this);
},
2013-03-04 00:09:43 +00:00
onRender: function () {
2013-04-26 15:31:56 +00:00
//TODO: Move this to a mixin
this.ui.tooltip.tooltip({ placement: 'right' });
2013-04-25 04:27:49 +00:00
},
saveSettings: function () {
this.model.save(undefined, this.syncNotification("Naming Settings Saved", "Couldn't Save Naming Settings"));
},
syncNotification: function (success, error) {
return {
success: function () {
window.alert(success);
},
error: function () {
window.alert(error);
}
};
2013-03-04 00:09:43 +00:00
}
});
2013-04-25 04:27:49 +00:00
})
;