From a19f8f079056ecfcb859111eb4ba6ece86509de0 Mon Sep 17 00:00:00 2001 From: bodine30 Date: Thu, 22 Mar 2012 11:23:49 -0600 Subject: [PATCH 1/4] URL for ES5-DOM-shim was a broken link, I updated it to https://github.com/termi/ES5-DOM-SHIM --- posts/dom.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. From 265e2099e1255d868c440baebd3782478d3b2a0c Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 23 Mar 2012 10:58:41 +0100 Subject: [PATCH 2/4] Opera 12+ has DnD support. Update message accordingly. --- posts/dragndrop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/dragndrop.md b/posts/dragndrop.md index 4436978d..69a03a57 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 (Currently supported in Opera 12+). From 0392b26e02e1c7f69351733a458be982f8f8c1c9 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 23 Mar 2012 11:39:09 +0100 Subject: [PATCH 3/4] Remove specific mention of Opera 12 wrt @dropzone. --- posts/dragndrop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/dragndrop.md b/posts/dragndrop.md index 69a03a57..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, 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 (Currently supported in Opera 12+). +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. From 688687647d0030e724388c00501fa8723d4b07a6 Mon Sep 17 00:00:00 2001 From: "Kevin G." Date: Tue, 3 Apr 2012 15:00:31 -0300 Subject: [PATCH 4/4] input[type=color] for Chromium/Chrome Canary at https://plus.google.com/102860501900098846931/posts/iWujARgWLcn --- posts/input-typecolor.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.