Skip to content

Commit

Permalink
Invalid float fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Juraj Novák committed Jan 13, 2015
1 parent 4ebc35b commit 6252186
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ <h3>Android SVG to VectorDrawable (Alpha)</h3>
<script src="js/cssjson.js"></script>
<script src='js/filereader.js'></script>
<script src='js/filesaver.min.js'></script>
<script src="js/main.js?v=3"></script>
<script src="js/main.js?v=4"></script>

<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
Expand Down
1 change: 1 addition & 0 deletions js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ function parseFile(inputXml) {
});

path = pathRebuild.replace("m", START_PATH).replace("z", END_PATH);
path = path.replace(/(\.\d+)(\.\d)/g, "\$1 \$2");

//Convert attributes to style
var attributes = $(paths[i])[0].attributes;
Expand Down

0 comments on commit 6252186

Please sign in to comment.