Mikhail Vyrodov
Mikhail Vyrodov
How about passing input `value` to `validate` method in `formatCharacters`. I think it will be convenient. Example ```jsx ``` This example does not make sense, but this functional can be...
Here is two files **test.js** ```js var ProgressBar = require('progress'); var bar = new ProgressBar(':bar', { total: 10 }); console.log('ProgressBar'); var timer = setInterval(function () { bar.tick(); if (bar.complete) {...
Here is code ```js var ProgressBar = require('progress'); var bar = new ProgressBar(':bar', { total: 10, renderThrottle: 0 }); for (var i = 0; i < 10; i++) { for...
* improve layouts creating for markers and balloons * add dist folder to `.gitignore` * fix error at `build:umd` script If you'll look at [API](https://tech.yandex.com/maps/doc/jsapi/2.1/ref/reference/ClusterPlacemark-docpage/), you can see such row...
I think it's a good practice to have only source code in repository.
Methods `onEnter`, `onLeave` and `onPositionChange` receive an object with data that contains current position. But what do I need to do when I want to get current position? For example,...