Skip to content

Commit

Permalink
Removed adding L to path #62
Browse files Browse the repository at this point in the history
  • Loading branch information
yuraj11 committed Sep 15, 2016
1 parent d0f0b4f commit 4f52442
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ <h4 class="modal-title">Multiple SVG files (<span id="files-count"></span> files
<script src="js/svg_shape_converter.js"></script>
<script src="js/flatten.js?v=1"></script>
<script src="js/jszip.min.js"></script>
<script src="js/main.js?v=28"></script>
<script src="js/main.js?v=29"></script>

<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
Expand Down
3 changes: 2 additions & 1 deletion js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,8 @@ function parsePathD(pathData) {
bigM = t == START_PATH;
} else if (skipMove && pathStart) {
if (!(t.indexOf(",") == -1 && isNaN(t))) {
t = (bigM ? DRAW_LINE.toUpperCase() : DRAW_LINE) + " " + t;
//t = (bigM ? DRAW_LINE.toUpperCase() : DRAW_LINE) + " " + t;
//TODO: check If this condition was needed
}
stop = true;
} else if (pathStart) {
Expand Down

0 comments on commit 4f52442

Please sign in to comment.