The non-wysiwyg method of adding the upload and link links to textareas only works onLoad as its being initiated on document ready only. This means no post-load generated forms will be involved...

By using a Drupal behavior instead, it will be initiated every time a popup window is open as well as document load ready. For example, Panels uses popup DOM windows to give you forms to add content into panes.

Implementation: imce_set_inline.js : 59

//$(document).ready(ii.initiate);
Drupal.behaviors.imceInline = function(context) {
	ii.initiate();
};
CommentFileSizeAuthor
imce_set_inline.js_.diff446 bytesJosephnewyork

Comments

ufku’s picture