diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index e1592325..1cd97c33 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -23,7 +23,7 @@ If you want to build a JS file with only specific modules you can specify them o
$ rake compile['custom google typekit']
-This will compile a JS file with only the `custom`, `google` and `typekit` modules. The available modules are: `custom`, `google`, `typekit`, `ascender`, `monotype`, `fontdeck`. By default all modules are included.
+This will compile a JS file with only the `custom`, `google` and `typekit` modules. The available modules are: `custom`, `google`, `typekit`, `ascender`, `monotype`. By default all modules are included.
## Demos
diff --git a/README.md b/README.md
index 097b841e..c27b3796 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Web Font Loader
-Web Font Loader gives you added control when using linked fonts via `@font-face`. It provides a common interface to loading fonts regardless of the source, then adds a standard set of events you may use to control the loading experience. The Web Font Loader is able to load fonts from [Google Fonts](http://www.google.com/fonts/), [Typekit](http://www.typekit.com/), [Fonts.com](http://www.fonts.com/), and [Fontdeck](http://fontdeck.com/), as well as self-hosted web fonts. It is co-developed by [Google](http://www.google.com/) and [Typekit](http://www.typekit.com).
+Web Font Loader gives you added control when using linked fonts via `@font-face`. It provides a common interface to loading fonts regardless of the source, then adds a standard set of events you may use to control the loading experience. The Web Font Loader is able to load fonts from [Google Fonts](http://www.google.com/fonts/), [Typekit](http://www.typekit.com/) and [Fonts.com](http://www.fonts.com/), as well as self-hosted web fonts. It is co-developed by [Google](http://www.google.com/) and [Typekit](http://www.typekit.com).
[](https://travis-ci.org/typekit/webfontloader)
@@ -14,7 +14,6 @@ Web Font Loader gives you added control when using linked fonts via `@font-face`
* [Modules](#modules)
* [Adobe Edge Web Fonts](#adobe-edge-web-fonts)
* [Custom](#custom)
- * [Fontdeck](#fontdeck)
* [Fonts.com](#fontscom)
* [Google](#google)
* [Typekit](#typekit)
@@ -275,18 +274,6 @@ WebFontConfig = {
Tests strings should be specified on a per font basis and contain at least one character. If not specified the default test string (`BESbswy`) is used.
-### Fontdeck
-
-To use the [Fontdeck](http://fontdeck.com/) module, specify the ID of your website. You can find this ID on the website page within your account settings.
-
-```javascript
-WebFontConfig = {
- fontdeck: {
- id: 'xxxxx'
- }
-};
-```
-
### Fonts.com
When using [Fonts.com web fonts](http://www.fonts.com/web-fonts/) specify your Project ID.
diff --git a/Rakefile b/Rakefile
index adb2d5c4..3b88e8c3 100644
--- a/Rakefile
+++ b/Rakefile
@@ -88,7 +88,7 @@ file "webfontloader.js" => "target/webfont.js" do
end
file "target/webfont.js", [:modules] => SourceJs + ["target"] do |t, args|
- args.with_defaults(:modules => 'custom google typekit monotype fontdeck')
+ args.with_defaults(:modules => 'custom google typekit monotype')
modules = args[:modules].split ' '
@@ -125,7 +125,7 @@ desc "Creates debug version into target/webfont.js"
task :debug, [:modules] => "target/webfont_debug.js"
file "target/webfont_debug.js", [:modules] => SourceJs + ["target"] do |t, args|
- args.with_defaults(:modules => 'custom google typekit monotype fontdeck')
+ args.with_defaults(:modules => 'custom google typekit monotype')
modules = args[:modules].split ' '
diff --git a/lib/webfontloader/demo/public/fontdeck.html b/lib/webfontloader/demo/public/fontdeck.html
deleted file mode 100644
index 93ea7d8a..00000000
--- a/lib/webfontloader/demo/public/fontdeck.html
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-