Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions scripts/bundled-uncompressed/html4+html5/jquery.history.js
Original file line number Diff line number Diff line change
Expand Up @@ -2044,6 +2044,13 @@ if (typeof JSON !== 'object') {
*/
History.createStateObject = function(data,title,url){
// Hashify

// Cleanup for IE in file:// mode – doesn't interfere with other browsers
// Without this you get a loop with multiple copies of the URL in the URL
if (/^file\:\/\/\/?/i.test(url)) {
url = url.substr(url.lastIndexOf("\/")+1);
}

var State = {
'data': data,
'title': title,
Expand Down