jquery - Isotope shiftColumnOfItem combined with hashHistory - how to? -
i'm using isotope filter set of items , jquery bbq handle hashhistory stuff.
it's working fine, except following: items collapsed - when clicked, expand , display more text. when 1 of items expanded, filtering info gets lost (which obvious, i'm not sending them on click yet) , see items again on screen.
on click expanding item, i'm using just
$container.isotope('shiftcolumnofitem', this.parentnode);
i have been searching still couldn't find way of combining method (or relayout) current filtering/hash parameters. tips welcome!
thank you.
after more time tweaking code, it's working.
it more general javascript issue regarding jquery bbq / isotope.
i changed markup expanding/collapsing item
<a href="#" data-toggle="collapse" data-target="#item10-collapse">
to
<a href="javascript: void();" data-toggle="collapse" data-target="#item10-collapse">
this way, no hashchanges registered.
Comments
Post a Comment