mirror of
https://github.com/koel/koel
synced 2024-11-24 05:03:05 +00:00
Doc fix
This commit is contained in:
parent
5504750dd7
commit
d5656966ee
1 changed files with 2 additions and 4 deletions
|
@ -235,12 +235,10 @@
|
|||
/**
|
||||
* Gather all selected songs
|
||||
*
|
||||
* @return array An array of Song object
|
||||
* @return {Array} An array of Song object
|
||||
*/
|
||||
gatherSelected() {
|
||||
var ids = _.map($(this.$els.wrapper).find('.song-item.selected'), row => {
|
||||
return $(row).data('song-id');
|
||||
});
|
||||
var ids = _.map($(this.$els.wrapper).find('.song-item.selected'), row => $(row).data('song-id'));
|
||||
|
||||
this.selectedSongs = songStore.byIds(ids);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue