I've recognized that the function 'Drupal.behaviors.omegaMediaQueries' in themes/omega/omega/js/omega-mediaqueries.js has an if which is not executed each time. Due the missing else of the if, at node display within Panel pane node template the mediaquery function is not running.
The fix would be to remove the if when the mediaquery update is working fine.
Comments
Comment #1
flefle commentedAnd it's the jQUery function .once that caused the issue in the madiaquery.js on the bottom there is an If about .once which is not TRUE in some cases. The .once function is buggy in other JS like Fivestar and the advice is to upgrade the jQuery to a 1.71 + version which evokes another list of errors.
Quick solution, put in the else of that condition the if handling and voila!
Comment #2
flefle commentedchanging from once -> one fixed the problems.