dgileadi / zepto-page-transitions

HTML5 Page Transitions similar to JQuery Mobile page transitions, but standalone (13k) and using Zepto.js
166 stars 46 forks source link

links don't work #44

Open jon-moreira opened 9 years ago

jon-moreira commented 9 years ago

I'm using the example present on page.

When i click on link "Flip to page two" and after complete animation force browser to reload the page, I see again the first page but the links don't work.

On browser url have #simple2.html

jon-moreira commented 9 years ago

my quickly solution is...

add this code on first page [code]

var loc = window.location.href, index = loc.indexOf('#'); if (index > 0) { window.location = loc.substring(0, index); }

[/code]