Skip to content

Commit

Permalink
fix(js): Enable Pjax when config is missing (backward compatibility)
Browse files Browse the repository at this point in the history
  • Loading branch information
oswaldoacauan committed May 27, 2014
1 parent 70c5e5e commit c037918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/default.hbs
Expand Up @@ -57,7 +57,7 @@
window.GHOSTIUM = {};
GHOSTIUM.haveGA = typeof ga_ua !== 'undefined' && ga_ua !== 'UA-XXXXX-X';
GHOSTIUM.haveDisqus = typeof disqus_shortname !== 'undefined' && disqus_shortname !== 'example';
GHOSTIUM.enablePjax = typeof enable_pjax !== 'undefined' ? enable_pjax : false;
GHOSTIUM.enablePjax = typeof enable_pjax !== 'undefined' ? enable_pjax : true;
</script>

<!-- build:js /assets/js/head-scripts.min.js -->
Expand Down

0 comments on commit c037918

Please sign in to comment.