mirror of
https://github.com/Radarr/Radarr
synced 2026-04-27 22:52:23 +02:00
13 lines
No EOL
439 B
JavaScript
13 lines
No EOL
439 B
JavaScript
var BackboneSortableCollectionView = require('backbone.collectionview');
|
|
var DelayProfileItemView = require('./DelayProfileItemView');
|
|
|
|
module.exports = BackboneSortableCollectionView.extend({
|
|
className : 'delay-profiles',
|
|
modelView : DelayProfileItemView,
|
|
|
|
events : {
|
|
'click li, td' : '_listItem_onMousedown',
|
|
'dblclick li, td' : '_listItem_onDoubleClick',
|
|
'keydown' : '_onKeydown'
|
|
}
|
|
}); |