mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
잘못된 selector의 사용 fix
This commit is contained in:
parent
51d074a7a4
commit
d72a4d07a4
1 changed files with 2 additions and 1 deletions
|
|
@ -57,7 +57,8 @@
|
|||
|
||||
// 파일 선택
|
||||
$(this.file_list_container).on('change', function(e) {
|
||||
var $el = $('option:selected', this.file_list_container);
|
||||
var $el = self.file_list_container.find('option:selected');
|
||||
|
||||
self.selected_files = [];
|
||||
$el.each(function(idx, el) {
|
||||
self.selected_files.push(el);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue