diff --git a/posts/dom.md b/posts/dom.md index 8aa44343..a2e56f81 100644 --- a/posts/dom.md +++ b/posts/dom.md @@ -2,7 +2,7 @@ feature: DOM status: caution tags: polyfill kind: api -polyfillurls: [ES5-DOM-shim](https://github.com/termi1uc1/ES5-DOM-SHIM), [DOM-shim](https://github.com/Raynos/DOM-shim) +polyfillurls: [ES5-DOM-shim](https://github.com/termi/ES5-DOM-SHIM), [DOM-shim](https://github.com/Raynos/DOM-shim) A large subset of [the DOM](http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html) can currently be correctly shimmed. However the current shims are not fully tested and are missing some features. diff --git a/posts/dragndrop.md b/posts/dragndrop.md index 4436978d..5d8b0c36 100644 --- a/posts/dragndrop.md +++ b/posts/dragndrop.md @@ -4,4 +4,4 @@ tags: polyfill nomobile kind: api polyfillurls:[dropfile](https://github.com/MrSwitch/dropfile), [fileSaver](https://github.com/eligrey/FileSaver.js), [jDataView](https://github.com/vjeux/jDataView) -Drag and Drop has been standardized in HTML5 based on Internet Explorer's original implementation. Therefore, it already has wide support (except Opera), but many feel frustrated when using the API. You may want to use jQuery UI Draggable (or another JavaScript library) to handle this for you. Meanwhile the proposed [[dropzone]](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#the-dropzone-attribute) attribute will improve the situation as it gains browser support. +Drag and Drop has been standardized in HTML5 based on Internet Explorer's original implementation. Therefore, it already has wide support, but many feel frustrated when using the API. You may want to use jQuery UI Draggable (or another JavaScript library) to handle this for you. Meanwhile the proposed [[dropzone]](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#the-dropzone-attribute) attribute will improve the situation as it gains browser support. diff --git a/posts/input-typecolor.md b/posts/input-typecolor.md index 2f1bafb3..1180e2e5 100644 --- a/posts/input-typecolor.md +++ b/posts/input-typecolor.md @@ -4,6 +4,6 @@ tags: polyfill gtie9 kind: html polyfillurls: [jscolor](https://github.com/jo/JSColor), [html5widgets](http://www.useragentman.com/blog/2010/07/27/cross-browser-html5-forms-using-modernizr-webforms2-and-html5widgets/) -A color input will fall back to a plain text input if it's not supported, but excluding Opera, no desktop browser has added support for color inputs. +A color input will fall back to a plain text input if it's not supported. So far, only Opera supports it, but it's rolling out in Chrome Canary. You should probably avoid this until it has support in WebKit, Gecko or IE.