123456789101112131415161718192021222324252627282930 |
-
-
-
- (function(){
-
-
- if (typeof window.performance === 'undefined') {
- window.performance = {};
- }
-
- if (!window.performance.now){
-
- var nowOffset = Date.now();
-
- if (performance.timing && performance.timing.navigationStart){
- nowOffset = performance.timing.navigationStart
- }
-
-
- window.performance.now = function now(){
- return Date.now() - nowOffset;
- }
-
- }
-
- })();
|