when I use the build in file browser
-> /user/1/imce
no other navigation link on te page is working any more.

It might be an adressing issue with jQuery.
Using only the imce popup there are no other links on the same page.

Comments

AxelBernhardt’s picture

Priority: Critical » Minor

ok, I found out why:

in imce-content.tpl.php I commented out the element "log-clearer":

<?php /* 
?><a href="#" id="log-clearer" class="imce-hide">
<?php print t('Clear log'); ?></a>
<?php */ ?>

Then in imce.js this click landed on all clickable elements on the page

//log clearer
  $(imce.el('log-clearer')).css('display', 'inline').click(function() {
  //  	return false; // try
  	alert('test 05');
  $(imce.el('log-wrapper')).empty();return false;});
},

This here (in imce-content.tpl.php) solved the problem:

<a href="#" id="log-clearer" class="imce-hide" style="display:none;">
<?php print t('Clear log'); ?></a>

"display:none" instead of php-commenting out ...

AxelBernhardt’s picture

Assigned: Unassigned » AxelBernhardt
Status: Active » Closed (fixed)

no bug, was my fault :)

pythonwrangler’s picture

What was the issue, i have the same problem and am trying to figure it out. -Ali