1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-21 11:02:01 +02:00
Sonarr/UI/Missing/Row.js

17 lines
312 B
JavaScript
Raw Normal View History

2013-06-21 23:24:24 -07:00
'use strict';
2013-06-20 22:35:56 -07:00
define(
[
'backgrid'
], function (Backgrid) {
2013-06-20 22:35:56 -07:00
return Backgrid.Row.extend({
events: {
'click .x-search': 'search'
},
search: function () {
window.alert('Episode Search');
}
});
});