Guest User

Untitled

a guest
Aug 16th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. TinyMCE - Change focus after TinyMCE is loaded in Chrome
  2. $(document).ready(){
  3. document.location.href = "#";
  4. };
  5.  
  6. setup : function(ed) {
  7. ed.onInit.add(function(ed, evt) {
  8. document.location.href = "#";
  9. });
  10. },
Add Comment
Please, Sign In to add comment