Created
February 18, 2016 07:37
-
-
Save nhattan/660e7818ce4eef1117b6 to your computer and use it in GitHub Desktop.
tinymce custom upload file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tinyMCE.init | |
selector: '#my_editor', | |
plugins: [ 'image' ] | |
file_browser_callback: (field_name, url, type, win) -> | |
if type == 'image' | |
$('.mce-container.mce-panel.mce-floatpanel.mce-window.mce-in').hide() | |
$('.modal-backdrop').hide() | |
$('#mce-modal-block').hide() | |
$('#myModal').modal('show') | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment