Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. var onChosenFileToOpen = function(theFileEntry) {
  2.  
  3. $('.nav-tabs li:nth-child(' + $(".nav-tabs").children().length + ') a').click(); //synchronous function that creates a tab
  4. var checker=setInterval(()=>{
  5. if(currentiframe.contentWindow && currentiframe.contentWindow.editor){//waits those 2 conditions to be true
  6. currentiframe.contentWindow.readFileIntoEditor(theFileEntry)//content is loaded to that tab
  7. clearInterval(checker)
  8. }
  9.  
  10. },1)};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement