c04806c1 by David LaPalomento

Merge pull request #110 from bparadie/fixes-105

Fixes issue 105
2 parents 589e8dc4 403e3041
...@@ -137,7 +137,7 @@ ...@@ -137,7 +137,7 @@
137 tagType: 'inf' 137 tagType: 'inf'
138 }; 138 };
139 if (match[1]) { 139 if (match[1]) {
140 event.duration = parseFloat(match[1], 10); 140 event.duration = parseFloat(match[1]);
141 } 141 }
142 if (match[2]) { 142 if (match[2]) {
143 event.title = match[2]; 143 event.title = match[2];
......