circle clipPath defs ellipse g line linearGradient mask path pattern polygon polyline
-radialGradient rect stop svg text tspan
+circle clipPath defs ellipse g image line linearGradient mask path pattern
+polygon polyline radialGradient rect stop svg text tspan
You may also be interested in react-art, a cross-browser drawing library for React.
Supported Attributes #
@@ -442,24 +442,29 @@ radialGradient rect stop svg text tspan
HTML Attributes #
These standard attributes are supported:
accept acceptCharset accessKey action allowFullScreen allowTransparency alt
-async autoComplete autoFocus autoPlay capture cellPadding cellSpacing charSet
-challenge checked classID className cols colSpan content contentEditable contextMenu
-controls coords crossOrigin data dateTime defer dir disabled download draggable
-encType form formAction formEncType formMethod formNoValidate formTarget frameBorder
-headers height hidden high href hrefLang htmlFor httpEquiv icon id inputMode
-keyParams keyType label lang list loop low manifest marginHeight marginWidth max
-maxLength media mediaGroup method min minLength multiple muted name noValidate open
-optimum pattern placeholder poster preload radioGroup readOnly rel required role
-rows rowSpan sandbox scope scoped scrolling seamless selected shape size sizes
-span spellCheck src srcDoc srcSet start step style summary tabIndex target title
-type useMap value width wmode wrap
+async autoComplete autoFocus autoPlay capture cellPadding cellSpacing challenge
+charSet checked classID className colSpan cols content contentEditable
+contextMenu controls coords crossOrigin data dateTime default defer dir
+disabled download draggable encType form formAction formEncType formMethod
+formNoValidate formTarget frameBorder headers height hidden high href hrefLang
+htmlFor httpEquiv icon id inputMode integrity is keyParams keyType kind label
+lang list loop low manifest marginHeight marginWidth max maxLength media
+mediaGroup method min minLength multiple muted name noValidate nonce open
+optimum pattern placeholder poster preload radioGroup readOnly rel required
+reversed role rowSpan rows sandbox scope scoped scrolling seamless selected
+shape size sizes span spellCheck src srcDoc srcLang srcSet start step style
+summary tabIndex target title type useMap value width wmode wrap
+
+These RDFa attributes are supported (several RDFa attributes overlap with standard HTML attributes and thus are excluded from this list):
+about datatype inlist prefix property resource typeof vocab
In addition, the following non-standard attributes are supported:
autoCapitalize autoCorrect for Mobile Safari.
-property for Open Graph meta tags.
+color for <link rel="mask-icon" /> in Safari.
itemProp itemScope itemType itemRef itemID for HTML5 microdata.
+security for older versions of Internet Explorer.
unselectable for Internet Explorer.
results autoSave for WebKit/Blink input fields of type search.
diff --git a/img/docs/should-component-update.png b/img/docs/should-component-update.png
index ac26827028..b9821c000e 100644
Binary files a/img/docs/should-component-update.png and b/img/docs/should-component-update.png differ
diff --git a/tips/use-react-with-other-libraries-ko-KR.html b/tips/use-react-with-other-libraries-ko-KR.html
index 59a88b5f19..895d959ee3 100644
--- a/tips/use-react-with-other-libraries-ko-KR.html
+++ b/tips/use-react-with-other-libraries-ko-KR.html
@@ -414,7 +414,7 @@
},
componentDidMount: function() {
- $(ReactDOM.findDOMNode(this.refs.placeholder)).append($('<span />'));
+ $(this.refs.placeholder).append($('<span />'));
},
componentWillUnmount: function() {
diff --git a/tips/use-react-with-other-libraries.html b/tips/use-react-with-other-libraries.html
index b9a322fce6..39f43f9c90 100644
--- a/tips/use-react-with-other-libraries.html
+++ b/tips/use-react-with-other-libraries.html
@@ -414,7 +414,7 @@
},
componentDidMount: function() {
- $(ReactDOM.findDOMNode(this.refs.placeholder)).append($('<span />'));
+ $(this.refs.placeholder).append($('<span />'));
},
componentWillUnmount: function() {