Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion scripts/bundled-uncompressed/html5/jquery.history.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@

// Check Existence
if ( typeof History.Adapter !== 'undefined' ) {
throw new Error('History.js Adapter has already been loaded...');
console.log('History.js Adapter has already been loaded...');
return;
}

// Add the Adapter
Expand Down
3 changes: 2 additions & 1 deletion scripts/uncompressed/history.adapter.jquery.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@

// Check Existence
if ( typeof History.Adapter !== 'undefined' ) {
throw new Error('History.js Adapter has already been loaded...');
console.log('History.js Adapter has already been loaded...');
return;
}

// Add the Adapter
Expand Down
3 changes: 2 additions & 1 deletion scripts/uncompressed/history.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@

// Check Existence
if ( typeof History.init !== 'undefined' ) {
throw new Error('History.js Core has already been loaded...');
console.log('History.js Core has already been loaded...');
return;
}

// Initialise History
Expand Down