[devdocsgjs/main: 1612/1867] fix: remove reference to dom_events




commit fb7db1e25348af4edc38dfa2b9f90eb03da3e508
Author: Oliver Eyton-Williams <ojeytonwilliams gmail com>
Date:   Thu Apr 22 12:10:19 2021 +0200

    fix: remove reference to dom_events
    
    Since the MDN scrapers have been updated, this no longer exists.

 lib/app.rb  | 2 +-
 lib/docs.rb | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/lib/app.rb b/lib/app.rb
index 15a9a8ec..e046dc4b 100644
--- a/lib/app.rb
+++ b/lib/app.rb
@@ -30,7 +30,7 @@ class App < Sinatra::Application
     set :docs_origin, File.join('', docs_prefix)
     set :docs_path, File.join(public_folder, docs_prefix)
     set :docs_manifest_path, File.join(docs_path, 'docs.json')
-    set :default_docs, %w(css dom dom_events html http javascript)
+    set :default_docs, %w(css dom html http javascript)
     set :news_path, File.join(root, assets_prefix, 'javascripts', 'news.json')
 
     set :csp, false
diff --git a/lib/docs.rb b/lib/docs.rb
index 3f07374d..abea0915 100644
--- a/lib/docs.rb
+++ b/lib/docs.rb
@@ -44,7 +44,7 @@ module Docs
   end
 
   def self.defaults
-    %w(css dom dom_events html http javascript).map(&method(:find))
+    %w(css dom html http javascript).map(&method(:find))
   end
 
   def self.installed


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]