Closed (fixed)
Project:
Views Isotope (Deprecated)
Version:
7.x-1.0-beta2
Component:
Miscellaneous
Priority:
Major
Category:
Support request
Assigned:
Reporter:
Created:
28 Nov 2012 at 10:41 UTC
Updated:
7 Aug 2014 at 00:45 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
symphonia commentedSolution found:
in second line of modules/isotope views/isotope_views.js
put
$(window).load(function() {
instead of
$(document).ready(function() {
Comment #2
theodorosploumisHere is the patch. Small but usefull for maintainers.
Comment #4
siva.thanush commentedI have the same issue with -beta2.
The patch here doesn't work for me.
Comment #5
granticusiv commentedThat patch doesn't work. The problem definitely seems to stem from the fact that the jQuery is called before the HTML has been rendered, hence why it only happens the first time round. Second time around, the HTML has usually been cached by the browser.
I normally call external libraries like this after the body in the template, but because this library is called from within the module, I don't know how to change it. Any suggestions?
Edit: I moved the
<?php print $scripts; ?>below the Body and it didn't help, so I guess the solution still lies in changing the code to make sure the HTML has finished rendering?Edit 2: That patch does work, if Colorbox module is disabled