As the title says.

CommentFileSizeAuthor
#3 imce_opens_new_window-920986-3.patch644 bytesdanrasband

Comments

puleddu’s picture

I have the same problem. :( Any help?

matchupitchu’s picture

I have the same issue.
I am using, bueditor with markdownforbueditor.

Maybe someone have one solution ??

danrasband’s picture

StatusFileSize
new644 bytes

I ran into the same issue, and after some extensive troubleshooting, I have come up with this patch. I couldn't figure out how to make the patch with git, so it's in the old format, but I think it should work the same.

fretje’s picture

I can confirm is also an issue with the 7.x-1.x-dev version.

I applied the patch from #3 manually which made the problem go away, but there was still a minor bug which prevented the window from closing when a file was chosen.

Changing the following line in markdowneditor.js gets rid of that bug:

    for (var i in val) {
      if (!el[i].value) el[i].value = val[i];
    }
-   win.blur();//or close()
+   win.close();
    el[el.length-1].focus();//focus on last element.
  },
frjo’s picture

Status: Active » Closed (won't fix)