From f8d72be2530bab4901f7e978b9d1c4467b43b9dc Mon Sep 17 00:00:00 2001 From: indigane Date: Sat, 30 Jul 2022 11:29:16 +0300 Subject: [PATCH] Add work-in-progress analysis tools --- analysis.html | 567 ++++++++++++++++++++++++++++++++++++++++++++++ common-scripts.js | 6 + 2 files changed, 573 insertions(+) create mode 100644 analysis.html diff --git a/analysis.html b/analysis.html new file mode 100644 index 0000000..b15f41c --- /dev/null +++ b/analysis.html @@ -0,0 +1,567 @@ + + + + + + Card Sorting Analysis + + + +
+
+
+ +
+ +
+
+
+
+
+
+
+
+ + + + + + + + \ No newline at end of file diff --git a/common-scripts.js b/common-scripts.js index acf2501..c1251e0 100644 --- a/common-scripts.js +++ b/common-scripts.js @@ -98,4 +98,10 @@ function debounce(func, wait, immediate) { func.apply(context, args); } }; +} + +function asTextContent(input) { + const tempElement = document.createElement('span'); + tempElement.textContent = input; + return tempElement.innerHTML; } \ No newline at end of file