-
Updated
Feb 18, 2020 - JavaScript
polyfill
Here are 460 public repositories matching this topic...
Perhaps I'm overlooking it, but I don't see documentation for how to develop on the project. Doesn't need to be much, just quick instructions on how to run the build script and also say what files you should be developing on. (It's not immediately obvious what files are sourced for the build versus what files are result from the build.)
-
Updated
Feb 17, 2020 - PHP
-
Updated
Feb 17, 2020 - PHP
https://developers.google.com/web/updates/2017/09/abortable-fetch
Currently it is only implemented in Firefox 57 and is coming to other browsers soon.
const controller = new AbortController();
const signal = controller.signal;
setTimeout(() => controller.abort(), 5000);
fetch(url, { signal }).then(response => {
return response.text();
}).then(text => {
console.lo-
Updated
Feb 18, 2020 - PHP
-
Updated
Feb 16, 2020 - PHP
-
Updated
Feb 18, 2020
-
Updated
Feb 16, 2020 - JavaScript
-
Updated
Feb 17, 2020 - JavaScript
Use caniuse-lite
We loved caniuse-db, but it uses 7 MB and contains many irrelevant data.
This is why @ben-eb created caniuse-lite. It is just a copy of latest caniuse-db (he wrote autorelease script) with less data and better compression. Only 1 MB.
Autoprefixer and Browserslist moved to caniuse-lite. So let’s use it here too. It is very easy, API is the sam
It seems that rangeslider don't get focus when drag and click. In the demo page , see the Programmatic value changes demo, when drag the handle of the slider or click the slider, the input control always has focus.
Is it expected behavior or a little bug.
So how can I make the input lose the control when
-
Updated
Feb 17, 2020 - HTML
in article https://swisnl.github.io/jQuery-contextMenu/docs.html#events, have typo preShow instead prevShow
Viewing the test page on Firefox has all tests pass except the one that checks the left position. The tests will all pass in responsive design mode, but not in normal viewing mode.
To reproduce:
- Open the test page in Firefox, not in responsive design view
- Resizing the entire browser window and refreshing will still reproduce the error
The test seems to be always off by exactl
-
Updated
Feb 17, 2020 - JavaScript
-
Updated
Feb 15, 2020 - PHP
-
Updated
Feb 13, 2020 - HTML
-
Updated
Feb 17, 2020 - PHP
-
Updated
Feb 17, 2020 - PHP
-
Updated
Feb 17, 2020 - PHP
The readme says
It's recommended to use this library in the form of a ponyfill, which doesn't inflict modifications of the global object.
The index.js file of the project does the ponyfill work already. Telling us to use the library in the form of a ponyfill is misleading, it should say something like "Th
-
Updated
Feb 5, 2020 - JavaScript
Improve this page
Add a description, image, and links to the polyfill topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the polyfill topic, visit your repo's landing page and select "manage topics."
If the document.domain property is set in the page,
_hasmodule throws error "Access is denied" when try to check window's property for example 'hasOwnProperty'.So I think it is better to change
_hasmodule like below.