Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/javascript/jash/Jash.js')
-rw-r--r--tests/javascript/jash/Jash.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/javascript/jash/Jash.js b/tests/javascript/jash/Jash.js
index 45fb379deb..80288a40aa 100644
--- a/tests/javascript/jash/Jash.js
+++ b/tests/javascript/jash/Jash.js
@@ -169,8 +169,6 @@ function Jash() {
return txt;
}
-
-
/**
* Print simple output to the console
* @param {string} text text to print
@@ -275,8 +273,6 @@ function Jash() {
this.dump(this.outputHistory);
}
-
-
/**
* Map input keystrokes
* @param {int} keyCode number representing keycode of key pressed in event object
@@ -438,7 +434,6 @@ function Jash() {
var textareaWrap = document.createElement("div");
textareaWrap.id = "JashTextareaWrap";
-
/* OUTPUT FIELD */
var debugOutput = document.createElement("textarea");
debugOutput.id = "JashOutput";
@@ -451,7 +446,6 @@ function Jash() {
inp.id = "JashInput";
var last = "";
-
/* listen for certain keystrokes, map them */
inp.onkeydown = function(e) {
e = (typeof window.event != "undefined") ? window.event : e;
@@ -630,7 +624,6 @@ function Jash() {
textareaWrap.style.width = newWidth + "px";
debugParent.style.width = newWidth + "px";
-
var newHeight = originalDims.y + (newMouseDims.y - originMouseDims.y);
if(newHeight < self.minDims.y) { newHeight = self.minDims.y; }
textareaWrap.style.height = newHeight + "px";
@@ -641,7 +634,6 @@ function Jash() {
}
}
-
var bottomBar = document.createElement("div");
bottomBar.id = "JashBottomBar";
@@ -785,7 +777,6 @@ function Jash() {
}
}
-
/**
* DOM inspection: Show parent node structure, and possibly innerHTML, of node
* under mouse cursor.