Skip to content

Commit

Permalink
Add file size
Browse files Browse the repository at this point in the history
  • Loading branch information
micku7zu committed Jan 28, 2017
1 parent bfcd052 commit 5830d04
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ element.vanillaTilt.reset();
### Install
You can copy and include any of the following file:

* dest/vanillaTilt.js
* dest/vanillaTilt.min.js
* dest/vanillaTilt.babel.js
* dest/vanillaTilt.babel.min.js
* dest/vanillaTilt.js ~ 6kb
* dest/vanillaTilt.min.js ~ 3.5kb
* dest/vanillaTilt.babel.js ~ 8.5kb
* dest/vanillaTilt.babel.min.js ~ 4.3kb

in your webiste.
2 changes: 1 addition & 1 deletion dest/vanillaTilt.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*/
"use strict";
(function (undefined) {
class VanillaTilt {

class VanillaTilt {
constructor(element, settings = {}) {
if (!(element instanceof Node)) {
throw("Can't initialize VanillaTilt because " + element + " is not a Node.");
Expand Down
2 changes: 1 addition & 1 deletion src/vanillaTilt.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
*/
"use strict";
(function (undefined) {
class VanillaTilt {

class VanillaTilt {
constructor(element, settings = {}) {
if (!(element instanceof Node)) {
throw("Can't initialize VanillaTilt because " + element + " is not a Node.");
Expand Down

0 comments on commit 5830d04

Please sign in to comment.