-
-
Save nka11/854639 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(window,undefined){ | |
// Prepare our Variables | |
var | |
History = window.History, | |
$ = window.jQuery; | |
// Wait for Document | |
History.Adapter.onDomLoad(function(){ | |
// Prepare Variables | |
var | |
$content = $('#content'), | |
$body = $(document.body), | |
rootUrl = document.location.protocol+'//'+(document.location.hostname||document.location.host); | |
// Ajaxify our Internal Links | |
$.fn.ajaxify = function(){ | |
// Ajaxify internal links | |
$(this).find('a[href^="/"],a[href^="'+rootUrl+'"]').unbind('click').bind('click',function(event){ | |
var $this = $(this), url = $this.attr('href'), title = $this.attr('title')||null; | |
window.History.pushState(null,title,url); | |
event.preventDefault(); | |
return false; | |
}); | |
// Chain | |
return this; | |
}; | |
// Ajaxify Page | |
$body.ajaxify(); | |
// Hook into State Changes | |
var first = true; | |
$(window).bind('statechange',function(){ | |
// Prevent Initial | |
if ( first ) { first = false; return; }; | |
// Prepare Variables | |
var | |
State = window.History.getState(), | |
url = State.url, | |
relativeUrl = url.replace(rootUrl,''); | |
// Set Loading | |
$body.addClass('loading'); | |
// Start Fade Out | |
$content.fadeOut(800); | |
// Ajax Request the Traditional Page | |
$.get(url,function(data){ | |
// Find the content in the page's html, and apply it to our current page's content | |
$content.stop(true,true).show(); | |
$content.html($(data).find('#content')).ajaxify(); | |
$content.ScrollTo(); | |
$body.removeClass('loading'); | |
// Inform Google Analytics of the change | |
if ( typeof pageTracker !== 'undefined' ) { | |
pageTracker._trackPageview(relativeUrl); | |
} | |
}); // end get | |
}); // end onStateChange | |
}); // end onDomLoad | |
})(window); // end closure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment