Skip to content

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
julienetie committed Apr 13, 2017
1 parent 6692973 commit 5e22dc7
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
13 changes: 13 additions & 0 deletions dist/mimetic.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ vVVv vVVv ': |_| \_\___||___/_/___|_|_|_|\__,_| ''
* Copyright Julien Etienne 2015 All Rights Reserved.
*/
// Initial time of the timing lapse.
/**
* volve - Tiny, Performant Debounce and Throttle Functions,
* License: MIT
* Copyright Julien Etienne 2016 All Rights Reserved.
* github: https://github.com/julienetie/volve
*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
*/

/**
* Date.now polyfill.
* {@link https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Date/now}
*/
if (!Date.now) {
Date.now = function now() {
return new Date().getTime();
Expand Down Expand Up @@ -778,6 +790,7 @@ const defaults$1 = {
lateDetectionDelay: 500
};

//Object Assign polyfill.
objectAssignPolyfill$1();

//Object Freeze polyfill.
Expand Down
13 changes: 13 additions & 0 deletions dist/mimetic.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,18 @@ vVVv vVVv ': |_| \_\___||___/_/___|_|_|_|\__,_| ''
* Copyright Julien Etienne 2015 All Rights Reserved.
*/
// Initial time of the timing lapse.
/**
* volve - Tiny, Performant Debounce and Throttle Functions,
* License: MIT
* Copyright Julien Etienne 2016 All Rights Reserved.
* github: https://github.com/julienetie/volve
*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
*/

/**
* Date.now polyfill.
* {@link https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Date/now}
*/
if (!Date.now) {
Date.now = function now() {
return new Date().getTime();
Expand Down Expand Up @@ -890,6 +902,7 @@ var defaults$2 = {
lateDetectionDelay: 500
};

//Object Assign polyfill.
objectAssignPolyfill$1();

//Object Freeze polyfill.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mimetic",
"version": "0.6.0",
"version": "0.6.5",
"description": "Scalable Fonts & Zoom Detection",
"main": "dist/mimetic.js",
"jsnext:main": "dist/mimetic.es.js",
Expand Down

0 comments on commit 5e22dc7

Please sign in to comment.