remove debug

This commit is contained in:
j 2016-02-29 18:04:07 +05:30
parent 50e8f4baa0
commit 44c1c48938
1 changed files with 0 additions and 1 deletions

View File

@ -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));
});