diff --git a/scripts/bundled-uncompressed/html5/jquery.history.js b/scripts/bundled-uncompressed/html5/jquery.history.js index 48a7f5ca..9d2780c7 100644 --- a/scripts/bundled-uncompressed/html5/jquery.history.js +++ b/scripts/bundled-uncompressed/html5/jquery.history.js @@ -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 diff --git a/scripts/uncompressed/history.adapter.jquery.js b/scripts/uncompressed/history.adapter.jquery.js index 8c252d5b..a85219f7 100644 --- a/scripts/uncompressed/history.adapter.jquery.js +++ b/scripts/uncompressed/history.adapter.jquery.js @@ -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 diff --git a/scripts/uncompressed/history.js b/scripts/uncompressed/history.js index 81fbb2a1..4398f38c 100644 --- a/scripts/uncompressed/history.js +++ b/scripts/uncompressed/history.js @@ -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