From 7d35b712d33cca0be3af122ecffbbfa7cbc123b2 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Fri, 29 Jan 2016 18:17:46 +0100 Subject: cleanup --- js/common.js | 71 ------------------------------------------------------------ 1 file changed, 71 deletions(-) delete mode 100644 js/common.js (limited to 'js') diff --git a/js/common.js b/js/common.js deleted file mode 100644 index 6ccc8ab..0000000 --- a/js/common.js +++ /dev/null @@ -1,71 +0,0 @@ -/* - * (common) global vars - * - */ -var data, // data (from JSON) - ui_type; // 't' (text) or 'g' (graphical) - -/* - * hacky way to remove class from node - * - */ -function removeClass(node, className) -{ - node.className = - node.className.replace(" "+className,''); - node.className = - node.className.replace(" "+className,''); // ??? - - return false; -} - -/* - * toggle display of element (by id) - * - */ -function toggleDisplay(id) -{ - node = $(id); - if (node.style.display=='none') { - node.fadeIn(); - } else { - node.fadeOut(); - } - - return false; -} - -/* - * trim string - * - */ -function trim(s) -{ - return s.replace(/(\||\n|\t)/g, " ").replace(/^\s+|\s+$/g, '').replace(/\s+/g, " "); -} - -function updateProgress (oEvent) { - //alert(oEvent); -} - -/* - * cross-site request - * - */ -function CreateCORSRequest(method, url) -{ - var xhr = new XMLHttpRequest(); - if ("withCredentials" in xhr) { - xhr.addEventListener("progress", updateProgress); - xhr.open(method, url, true); - xhr.timeout = 999999999999; - xhr.ontimeout = function () { alert("XHR TIMEOUT"); } - xhr.onerror = function () { alert("XHR ERRROR 1"); } - xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded; charset=UTF-8'); - } else { - xhr = null; - } - - return xhr; -} - -- cgit v1.2.3