summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/clipboard.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/js/clipboard.js b/js/clipboard.js
index 535e333..66df875 100644
--- a/js/clipboard.js
+++ b/js/clipboard.js
@@ -116,11 +116,8 @@ var clipboard = (function () {
import_text: function () {
var data = import_textarea.value
lines = data.split("\n")
- console.log(data)
- console.log(lines)
var width = lines.reduce(function(a,b){ console.log(a,b); return Math.max(a, b.length) }, 0)
var height = lines.length
-console.log(width, height)
if (width > 200) {
return alert("input too wide")
}