Upsell dev tools

People probably don't know these exist. Add some information about React
dev mode as well as a link to the developer tools when using Chrome.
This commit is contained in:
Pete Hunt
2014-01-10 20:16:10 -08:00
committed by Paul O’Shannessy
parent bcacd17f8b
commit d8a8f6a881

View File

@@ -68,6 +68,17 @@ var React = {
}
};
if (__DEV__) {
var ExecutionEnvironment = require('ExecutionEnvironment');
if (ExecutionEnvironment.canUseDOM &&
navigator.userAgent.indexOf('Chrome') > -1) {
console.debug(
'Download the React DevTools for a better development experience: ' +
'http://fb.me/react-devtools'
);
}
}
// Version exists only in the open-source version of React, not in Facebook's
// internal version.
React.version = '0.9.0-alpha';