I've noticed when I installed this module to have easing effect, everything is working good with admin account, but when I logout it stop working. I've searched for any permissions restriction, but didn't find any. Anyone with this problem? Oh, and I've tried with the newest dev version and it's the same situation. Without this module I don't have any problems with jQuery, so my code is right. I want to use Jquery UI only for easing effects. I hope someone will post an solution for this.

Comments

satvision83’s picture

Issue summary: View changes

correction details

satvision83’s picture

Issue summary: View changes

correction...

ericduran’s picture

hmm, this seems rather weird.

Are you sure it's not a caching issue?

Not really sure what it can be right now. Sorry.

Are you still having this issue on the latest dev version?

satvision83’s picture

Hi. I've just tried with the latest dev from 2013-Apr-09. I've cleaned the cache couple of times, already tried with different versions of jQuery. The same issue still occurs. I've created a test user, and the problem is there too, so jquery update easing animations works only with admin user.
This is a very similar thread: http://drupal.org/node/802432

theMusician’s picture

I too have just ran into this issue. Looking through the issue queue, this bug may be present since 5.x-2.x-dev, http://drupal.org/node/255490.

As mentioned, these threads also indicate similar issues, http://drupal.org/node/802432 and http://drupal.org/node/1019790.

My js loads properly on all pages except for the frontpage while anonymous. If logged in, the js loads and works properly. I am only using the slide effect from the UI library and typically load it like so:

drupal_add_library('system','effects.slide'); in the preprocess_page function of template.php. To fix the error of jquery not loading on the homepage with the jQuery update module running I had to add the entire UI library to preprocess_html.

function themeName_preprocess_html(&$variables, $hook) {
  drupal_add_library('system','ui');
}

This is certainly odd behavior.

giorgio79’s picture

giorgio79’s picture

Issue summary: View changes

correction....