Skip to content

Instantly share code, notes, and snippets.

@nhattan
Created February 18, 2016 07:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nhattan/660e7818ce4eef1117b6 to your computer and use it in GitHub Desktop.
Save nhattan/660e7818ce4eef1117b6 to your computer and use it in GitHub Desktop.
tinymce custom upload file
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