mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-23 05:09:56 +09:00
fix #1648 CKEditor에도 자동 저장 기능 추가
기존 XpressEditor에 있던 자동저장 기능을 추가합니다. 50초마다 자동으로 저장되며 기존 XpressEditor처럼 설정에서 자동 저장 사용 여부를 바꿀 수 있습니다.
This commit is contained in:
parent
7fefed1508
commit
f51b6f9b45
4 changed files with 71 additions and 0 deletions
|
|
@ -45,6 +45,15 @@
|
|||
</div>
|
||||
|
||||
<script>
|
||||
function reloadUploader(editor_sequence){
|
||||
jQuery(function($){
|
||||
var setting = {
|
||||
maxFileSize: {$file_config->allowed_filesize},
|
||||
limitMultiFileUploadSize: {$file_config->allowed_filesize}
|
||||
};
|
||||
var uploader = $('#xefu-container-' + editor_sequence).xeUploader(setting);
|
||||
});
|
||||
}
|
||||
jQuery(function($){
|
||||
// uploader
|
||||
<!--@if($allow_fileupload)-->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue