Skip to content
This repository has been archived by the owner on Oct 13, 2021. It is now read-only.

Commit

Permalink
Keep fonts from 404ing when fetched from filter.css. Fixes bug 1356328.
Browse files Browse the repository at this point in the history
The cachebusting was failing to find the hashed version of the filename because the static_manifest doesn't include those querystrings. The querystrings don't do anything anyway, so I removed them.
  • Loading branch information
erikrose committed Nov 16, 2017
1 parent addafaf commit 7684609
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dxr/static_unhashed/css/filter.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@font-face {
font-family: 'icons';
src: url('/static/fonts/icons.eot?#iefix2013') format('embedded-opentype'),
url('/static/fonts/icons.woff?2013') format('woff'),
url('/static/fonts/icons.ttf?2013') format('truetype');
src: url('/static/fonts/icons.eot') format('embedded-opentype'),
url('/static/fonts/icons.woff') format('woff'),
url('/static/fonts/icons.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
Expand Down

0 comments on commit 7684609

Please sign in to comment.