Skip to content

Commit

Permalink
2.47.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JiHong88 authored Aug 11, 2024
2 parents d2b95a6 + 0ae7613 commit 4e71a5d
Show file tree
Hide file tree
Showing 13 changed files with 780 additions and 131 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -739,6 +739,10 @@ youtubeQuery : The query string of a YouTube embedded URL. default: ''
It takes precedence over the value user entered.
ex) 'autoplay=1&mute=1&enablejsapi=1&controls=0&rel=0&modestbranding=1'
// https://developers.google.com/youtube/player_parameters
vimeoQuery : The query string of a Vimeo embedded URL. default: '' {String}
It takes precedence over the value user entered.
ex) 'autoplay=1&muted=1'
// https://help.vimeo.com/hc/en-us/articles/12426260232977-Player-parameters-overview
videoFileInput : Choose whether to create a file input tag in the video upload window. default: false {Boolean}
videoUrlInput : Choose whether to create a video url input tag in the video upload window.
If the value of videoFileInput is false, it will be unconditionally. default: true {Boolean}
Expand Down Expand Up @@ -1176,6 +1180,13 @@ editor.onload = function (core, reload) {
*/
editor.onPaste = function (e, cleanData, maxCharCount, core) { console.log('onPaste', e) }

/**
* paste event on math plugin
* e: Event object
* core: Core object
*/
editor.onPasteMath = function (e, core) { console.log('onPasteMath', e) }

// Copy event.
// Called before the editor's default event action.
// If it returns false, it stops without executing the rest of the action.
Expand Down
Loading

0 comments on commit 4e71a5d

Please sign in to comment.