Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyRe7 committed Jun 30, 2023
1 parent 1a2afd6 commit fdea8d9
Show file tree
Hide file tree
Showing 25 changed files with 41,585 additions and 0 deletions.
81 changes: 81 additions & 0 deletions dist/error_handler.bundle.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[1],{

/***/ 528:
/***/ (function(module, exports) {

/*
* noVNC: HTML5 VNC client
* Copyright (C) 2019 The noVNC Authors
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
*/

// NB: this should *not* be included as a module until we have
// native support in the browsers, so that our error handler
// can catch script-loading errors.

// No ES6 can be used in this file since it's used for the translation
/* eslint-disable prefer-arrow-callback */

(function _scope() {
"use strict";

// Fallback for all uncaught errors
function handleError(event, err) {
try {
var msg = document.getElementById('noVNC_fallback_errormsg');

// Only show the initial error
if (msg.hasChildNodes()) {
return false;
}

// Skip allowed errors
var allowedErrors = ["The user has exited the lock before this request was completed."];
if (event.message && allowedErrors.includes(event.message)) {
return false;
}
return location.reload();
var div = document.createElement("div");
div.classList.add('noVNC_message');
div.appendChild(document.createTextNode(event.message));
msg.appendChild(div);
if (event.filename) {
div = document.createElement("div");
div.className = 'noVNC_location';
var text = event.filename;
if (event.lineno !== undefined) {
text += ":" + event.lineno;
if (event.colno !== undefined) {
text += ":" + event.colno;
}
}
div.appendChild(document.createTextNode(text));
msg.appendChild(div);
}
if (err && err.stack) {
div = document.createElement("div");
div.className = 'noVNC_stack';
div.appendChild(document.createTextNode(err.stack));
msg.appendChild(div);
}
document.getElementById('noVNC_fallback_error').classList.add("noVNC_open");
} catch (exc) {
document.write("Kasm encountered an error.");
}
// Don't return true since this would prevent the error
// from being printed to the browser console.
return false;
}
window.addEventListener('error', function onerror(evt) {
handleError(evt, evt.error);
});
window.addEventListener('unhandledrejection', function onreject(evt) {
handleError(evt.reason, evt.reason);
});
})();

/***/ })

},[[528,0]]]);
Binary file added dist/fonts/2dd3cc0a5866320bdf5478fab39d48d9.ttf
Binary file not shown.
Binary file added dist/fonts/336ec822f2fdf93751577eabb42b1dd2.woff
Binary file not shown.
92 changes: 92 additions & 0 deletions dist/images/0e9730a4f7927f7c0b8af69624bdf0f2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
81 changes: 81 additions & 0 deletions dist/images/0f401c830b7e330d24b54b2aecd20c9f.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
81 changes: 81 additions & 0 deletions dist/images/252ed0078446ce2f6c9a76c2884e6d5b.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit fdea8d9

Please sign in to comment.