1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-01 12:34:40 +00:00
Lidarr/UI/Shared/Toolbar/CommandView.js

21 lines
359 B
JavaScript

"use strict";
define(['app'], function () {
NzbDrone.Shared.Toolbar.CommandView = Backbone.Marionette.ItemView.extend({
template : 'Shared/Toolbar/CommandTemplate',
className: 'btn',
events: {
'click': 'onClick'
},
onClick: function () {
window.alert('click');
}
});
});