fix #1463 게시판 설정의 파일 첨부 허용량을 반영하지 못하는 문제 고침

This commit is contained in:
bnu 2015-05-19 14:02:42 +09:00
parent f4d4c3218d
commit 6dd9fe5fab

View file

@ -247,8 +247,11 @@
loadFilelist: function() {
var self = this;
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;
editorRelKeys[self.$container.data('editor-sequence')].primary.value = res.upload_target_srl;
data.uploadTargetSrl = res.uploadTargetSrl;