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

Replace the App Cache with a Service Worker #1022

Merged
merged 25 commits into from
Jul 19, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Remove redundant server-side rendering
  • Loading branch information
jmerle committed Jul 8, 2019
commit 4a088caf7c4e09cd0f8e1609171f990ad5baf65e
1 change: 0 additions & 1 deletion public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"description": "API Documentation Browser",
"start_url": "/",
"display": "standalone",
"background_color": "#EEEEEE",
"icons": [
{
"src": "/images/webapp-icon-32.png",
Expand Down
8 changes: 1 addition & 7 deletions views/app.erb
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,7 @@
</nav>
</header>
<section class="_sidebar" tabindex="-1">
<div class="_list" role="navigation">
<% unless @doc %>
<% App.docs.each do |slug, doc| %>
<a href="/<%= slug %>/" class="_list-item"><%= doc['full_name'] %></a>
<% end %>
<% end %>
</div>
<div class="_list" role="navigation"></div>
</section>
<div class="_container" role="document">
<main class="_content _content-loading" role="main"></main>
Expand Down