From 44c1c489382f17ff6cdd0b984ae5d59b6a4090e0 Mon Sep 17 00:00:00 2001 From: j Date: Mon, 29 Feb 2016 18:04:07 +0530 Subject: [PATCH] remove debug --- js/classes.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/classes.js b/js/classes.js index 3177fba..2cf06a0 100644 --- a/js/classes.js +++ b/js/classes.js @@ -95,7 +95,6 @@ TextArea.prototype.fromSrt = function(txt) { var that = this; this.spans = []; var srt = Ox.parseSRT(txt); - Ox.print(srt); srt.forEach(function(s) { that.spans.push(new Span(s['in'], s.out, s.text, that.spans.length)); });