Skip to content

Commit

Permalink
bump version, build dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
simeydotme committed Jun 27, 2019
1 parent f634fb8 commit fbc9326
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions dist/donutty-jquery.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* donutty // Create SVG donut charts with Javascript
* @author simeydotme <[email protected]>
* @version 1.2.1
* @version 1.2.3
* @license ISC
* @link http://simey.me
* @preserve
Expand Down Expand Up @@ -185,8 +185,8 @@
this.$svg.setAttribute( "viewbox", "0 0 " + viewbox + " " + viewbox );
this.$svg.setAttribute( "transform", "rotate( " + rotate +" )" );
this.$svg.classList.add( "donut" );
this.$svg.style.width = viewbox;
this.$svg.style.height = viewbox;
this.$svg.style.width = viewbox + "px";
this.$svg.style.height = viewbox + "px";

return this;

Expand Down
4 changes: 2 additions & 2 deletions dist/donutty-jquery.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions dist/donutty.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* donutty // Create SVG donut charts with Javascript
* @author simeydotme <[email protected]>
* @version 1.2.1
* @version 1.2.3
* @license ISC
* @link http://simey.me
* @preserve
Expand Down Expand Up @@ -185,8 +185,8 @@
this.$svg.setAttribute( "viewbox", "0 0 " + viewbox + " " + viewbox );
this.$svg.setAttribute( "transform", "rotate( " + rotate +" )" );
this.$svg.classList.add( "donut" );
this.$svg.style.width = viewbox;
this.$svg.style.height = viewbox;
this.$svg.style.width = viewbox + "px";
this.$svg.style.height = viewbox + "px";

return this;

Expand Down
Loading

0 comments on commit fbc9326

Please sign in to comment.