We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c62f214 commit 5e7f487Copy full SHA for 5e7f487
js/rpg_core/Graphics.js
@@ -288,6 +288,10 @@ Graphics.printLoadingError = function(url) {
288
button.style.color = '#ffffff';
289
button.style.backgroundColor = '#000000';
290
button.onclick = ResourceHandler.retry.bind(ResourceHandler);
291
+ button.ontouchstart = function(event) {
292
+ ResourceHandler.retry();
293
+ event.stopPropagation();
294
+ };
295
this._errorPrinter.appendChild(button);
296
this._loadingCount = -Infinity;
297
}
0 commit comments