Files
cartodb/lib/assets/javascripts/cdb.js/test/demos/profiler.html
2020-06-15 10:58:47 +08:00

19 lines
314 B
HTML

<html>
<body>
</body>
<script src="../src/core/profiler.js"></script>
<script>
setInterval(function() {
Profiler.new_value('test', Math.random());
}, 500);
setInterval(function() {
Profiler.new_value('test2', Math.random());
}, 1500);
Profiler.ui();
</script>
</html>