diff --git a/assets/javascripts/templates/pages/about_tmpl.coffee b/assets/javascripts/templates/pages/about_tmpl.coffee
index 08508eb9..919d6a83 100644
--- a/assets/javascripts/templates/pages/about_tmpl.coffee
+++ b/assets/javascripts/templates/pages/about_tmpl.coffee
@@ -277,7 +277,7 @@ credits = [
'http://docs.python.org/3/license.html'
], [
'React',
- '2013-2014 Facebook Inc.',
+ '2013-2015 Facebook Inc.',
'CC BY',
'https://raw.githubusercontent.com/facebook/react/master/LICENSE-docs'
], [
diff --git a/lib/docs/scrapers/react.rb b/lib/docs/scrapers/react.rb
index 80879542..ce759f16 100644
--- a/lib/docs/scrapers/react.rb
+++ b/lib/docs/scrapers/react.rb
@@ -2,9 +2,13 @@ module Docs
class React < UrlScraper
self.name = 'React'
self.type = 'react'
- self.version = '0.12.2'
+ self.version = '0.13.0'
self.base_url = 'http://facebook.github.io/react/docs/'
self.root_path = 'getting-started.html'
+ self.links = {
+ home: 'http://facebook.github.io/react/',
+ code: 'https://github.com/facebook/react'
+ }
html_filters.push 'react/entries', 'react/clean_html'
@@ -13,10 +17,11 @@ module Docs
options[:skip] = %w(
videos.html
complementary-tools.html
- examples.html)
+ examples.html
+ conferences.html)
options[:attribution] = <<-HTML
- © 2013–2014 Facebook Inc.
+ © 2013–2015 Facebook Inc.
Licensed under the Creative Commons Attribution 4.0 International Public License.
HTML
end