mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-26 14:49:56 +09:00
fix #1463 게시판 설정의 파일 첨부 허용량을 반영하지 못하는 문제 고침
This commit is contained in:
parent
f4d4c3218d
commit
6dd9fe5fab
1 changed files with 4 additions and 1 deletions
|
|
@ -247,8 +247,11 @@
|
||||||
loadFilelist: function() {
|
loadFilelist: function() {
|
||||||
var self = this;
|
var self = this;
|
||||||
var data = this.$container.data();
|
var data = this.$container.data();
|
||||||
|
var obj = {};
|
||||||
|
obj.mid = window.current_mid;
|
||||||
|
obj.editor_sequence = self.$container.data('editor-sequence');
|
||||||
|
|
||||||
$.exec_json('file.getFileList', {'editor_sequence': self.$container.data('editor-sequence')}, function(res){
|
$.exec_json('file.getFileList', obj, function(res){
|
||||||
data.uploadTargetSrl = res.upload_target_srl;
|
data.uploadTargetSrl = res.upload_target_srl;
|
||||||
editorRelKeys[self.$container.data('editor-sequence')].primary.value = res.upload_target_srl;
|
editorRelKeys[self.$container.data('editor-sequence')].primary.value = res.upload_target_srl;
|
||||||
data.uploadTargetSrl = res.uploadTargetSrl;
|
data.uploadTargetSrl = res.uploadTargetSrl;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue