diff --git a/lib/docs/filters/phaser/clean_html.rb b/lib/docs/filters/phaser/clean_html.rb
index c69a89db..c80279bb 100644
--- a/lib/docs/filters/phaser/clean_html.rb
+++ b/lib/docs/filters/phaser/clean_html.rb
@@ -8,7 +8,7 @@ module Docs
@doc = at_css('#docs-index')
# Remove first paragraph (old doc details)
- at_css('p').remove
+ at_css('table').remove
title.content = 'Phaser'
else
diff --git a/lib/docs/scrapers/phaser.rb b/lib/docs/scrapers/phaser.rb
index fa8a5a02..5bd7e012 100644
--- a/lib/docs/scrapers/phaser.rb
+++ b/lib/docs/scrapers/phaser.rb
@@ -1,10 +1,10 @@
module Docs
class Phaser < UrlScraper
self.type = 'phaser'
- self.version = '2.3.0'
- self.base_url = "https://phaser.io/docs/#{version}"
+ self.version = '2.4.1'
+ self.base_url = "http://phaser.io/docs/#{version}"
self.links = {
- home: 'https://phaser.io/',
+ home: 'http://phaser.io/',
code: 'https://github.com/photonstorm/phaser'
}