Removed console logs

This commit is contained in:
Robert Best 2017-04-10 22:33:04 +00:00
parent 0823d7d338
commit ae7dc7f455

View file

@ -68,11 +68,9 @@ const PasteInput = {
} else if (text[0] === '{') { } else if (text[0] === '{') {
Import.handleJSON(text) Import.handleJSON(text)
} else if (text.match(/[Tt]opics\t/) || text.match(/[Ss]ynapses\t/)) { } else if (text.match(/[Tt]opics\t/) || text.match(/[Ss]ynapses\t/)) {
console.log("Tab sep!")
Import.handleTSV(text) Import.handleTSV(text)
} else { } else {
//Handle as plain text //Handle as plain text
console.log("The text is:",text,"!")
let textItems = text.split("\n") let textItems = text.split("\n")
if (textItems.length === 1){ if (textItems.length === 1){
if(textItems[0].trim() !== ""){ if(textItems[0].trim() !== ""){