Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove our mkdocs search override #3496

Merged
merged 4 commits into from
Jan 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions readthedocs/core/static-src/core/js/readthedocs-doc-embed.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var sponsorship = require('./sponsorship'),
footer = require('./doc-embed/footer.js'),
// grokthedocs = require('./doc-embed/grokthedocs-client'),
mkdocs = require('./doc-embed/mkdocs'),
// mkdocs = require('./doc-embed/mkdocs'),
rtddata = require('./doc-embed/rtd-data'),
sphinx = require('./doc-embed/sphinx'),
search = require('./doc-embed/search');
Expand All @@ -10,6 +10,6 @@ $(document).ready(function () {
footer.init();
sphinx.init();
// grokthedocs.init();
mkdocs.init();
// mkdocs.init();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we are not using it we can also comment line 4 (require)

search.init();
});
Loading