잘못된 selector의 사용 fix

This commit is contained in:
YJSoft 2015-03-10 15:07:35 +09:00 committed by bnu
parent 51d074a7a4
commit d72a4d07a4

View file

@ -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);