Jakub T. Jankiewicz
Jakub T. Jankiewicz
If you care about this you can add documentation that the one that want to use IE can add polyfill. There is even free service that add polyfills anyone can...
This is minfied implementation for Polyfill I've found. but I didn't test it though. [counter.min.txt](https://github.com/ihucos/counter.dev/files/6103884/counter.min.txt) the code is based on * https://github.com/jerrybendy/url-search-params-polyfill * https://github.com/developit/unfetch Unfetch is some old version I...
Just an idea, you can create server script that serve this data like polyfil.io user will include this script that will give output only for IE.
I've used this code for basic Authentication: ```php if (isset($_SERVER['PHP_AUTH_USER']) && isset($_SERVER['PHP_AUTH_PW'])) { curl_setopt($ch, CURLOPT_USERPWD, $_SERVER['PHP_AUTH_USER'] . ":" . $_SERVER['PHP_AUTH_PW']); } ``` I've also needed to add CORS headers in...
Sorry I don't think it's good idea to patch version that was released years ago. Maybe you should consider updating the library. Unless you don't want to work on this...
I'm not sure what `-j4` suppose to do? Makefile just loop over files and use sed to update the icons It's like single long Linux command. I think this type...
I make system-upgrade icon themable.
It doesn't work with the latest P5.js as soon as I call `capturer.start()` the animation stops.
If you follow the API documentation, you have not working widget. so change event don't work at all as per API docs and instead you have exception in console. Will...
Here is fiddle https://jsfiddle.net/zcgtLehf/ if you call this ```javascript $('#dom-id') .dateRangePicker() .bind('datepicker-first-date-selected', function(event, obj) { }); ``` as per docs. And as per code, the plugin will be initialized twice...