JI-1059 Fix not showing toast if it is disabled
parent
75453e872c
commit
ada2f4009d
|
@ -190,6 +190,9 @@ H5P.RequestQueue = (function ($, EventDispatcher) {
|
||||||
* @param {string} msg Message to display
|
* @param {string} msg Message to display
|
||||||
*/
|
*/
|
||||||
RequestQueue.prototype.displayToastMessage = function (msg) {
|
RequestQueue.prototype.displayToastMessage = function (msg) {
|
||||||
|
if (!this.showToast) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
H5P.attachToastTo(
|
H5P.attachToastTo(
|
||||||
H5P.jQuery('.h5p-content:first')[0],
|
H5P.jQuery('.h5p-content:first')[0],
|
||||||
msg,
|
msg,
|
||||||
|
@ -221,9 +224,7 @@ H5P.RequestQueue = (function ($, EventDispatcher) {
|
||||||
this.resumeQueue();
|
this.resumeQueue();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.showToast) {
|
this.displayToastMessage(message);
|
||||||
this.displayToastMessage(message);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return RequestQueue;
|
return RequestQueue;
|
||||||
|
|
Loading…
Reference in New Issue