You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.1 KiB
50 lines
1.1 KiB
"use strict";
|
|
define(['app', 'Config'], function () {
|
|
|
|
NzbDrone.Shared.Toolbar.RadioButtonView = Backbone.Marionette.ItemView.extend({
|
|
template : 'Shared/Toolbar/ButtonTemplate',
|
|
className: 'btn',
|
|
|
|
events: {
|
|
'click': 'onClick'
|
|
},
|
|
|
|
|
|
initialize: function () {
|
|
|
|
this.storageKey = this.model.get('menuKey') + ':' + this.model.get('key');
|
|
},
|
|
|
|
onRender: function () {
|
|
if (this.model.get('active')) {
|
|
this.$el.addClass('active');
|
|
this.invokeCallback();
|
|
}
|
|
},
|
|
|
|
onClick: function () {
|
|
|
|
NzbDrone.Config.SetValue(this.model.get('menuKey'), this.model.get('key'));
|
|
this.invokeCallback();
|
|
},
|
|
|
|
invokeCallback: function () {
|
|
|
|
if (!this.model.ownerContext) {
|
|
throw 'ownerContext must be set.';
|
|
}
|
|
|
|
|
|
var callback = this.model.get('callback');
|
|
if (callback) {
|
|
callback.call(this.model.ownerContext);
|
|
}
|
|
}
|
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
|