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