Update request-queue.js
Wrap window.localStorage checks into a try/catch block in order to prevent errors when third party cookies are disabled by the browser.pull/80/head^2
parent
743147698f
commit
6126784f40
|
@ -27,7 +27,11 @@ H5P.RequestQueue = (function ($, EventDispatcher) {
|
||||||
* @returns {boolean}
|
* @returns {boolean}
|
||||||
*/
|
*/
|
||||||
RequestQueue.prototype.add = function (url, data) {
|
RequestQueue.prototype.add = function (url, data) {
|
||||||
if (!window.localStorage) {
|
try {
|
||||||
|
if (!window.localStorage) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} catch(err) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -56,7 +60,11 @@ H5P.RequestQueue = (function ($, EventDispatcher) {
|
||||||
* @returns {boolean|Array} Stored requests
|
* @returns {boolean|Array} Stored requests
|
||||||
*/
|
*/
|
||||||
RequestQueue.prototype.getStoredRequests = function () {
|
RequestQueue.prototype.getStoredRequests = function () {
|
||||||
if (!window.localStorage) {
|
try {
|
||||||
|
if (!window.localStorage) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} catch(err) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,7 +82,11 @@ H5P.RequestQueue = (function ($, EventDispatcher) {
|
||||||
* @returns {boolean} True if the storage was successfully cleared
|
* @returns {boolean} True if the storage was successfully cleared
|
||||||
*/
|
*/
|
||||||
RequestQueue.prototype.clearQueue = function () {
|
RequestQueue.prototype.clearQueue = function () {
|
||||||
if (!window.localStorage) {
|
try {
|
||||||
|
if (!window.localStorage) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} catch(err) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -89,7 +101,11 @@ H5P.RequestQueue = (function ($, EventDispatcher) {
|
||||||
*/
|
*/
|
||||||
RequestQueue.prototype.resumeQueue = function () {
|
RequestQueue.prototype.resumeQueue = function () {
|
||||||
// Not supported
|
// Not supported
|
||||||
if (!H5PIntegration || !window.navigator || !window.localStorage) {
|
try {
|
||||||
|
if (!H5PIntegration || !window.navigator || !window.localStorage) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} catch(err) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue