Skip to content

Commit

Permalink
Merge pull request #13 from daverodriguez/master
Browse files Browse the repository at this point in the history
More specific check to fix oldIE bug
  • Loading branch information
Mottie committed Jun 25, 2015
2 parents f652b3e + a8580d8 commit ef8e3eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/jquery.visualNav.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $.visualNav = function(el, options){

// Cached objects
base.winLoc = window.location;
base.history = ('history' in window) ? window.history : null;
base.history = ('replaceState' in window.history) ? window.history : null;
base.$win = $(window);
base.$doc = $(document);
base.$body = $('html, body'); // include 'html' for IE
Expand Down

0 comments on commit ef8e3eb

Please sign in to comment.