Skip to content

Commit

Permalink
Merge pull request angular-ui#4179 from mtraynham/bug_4113
Browse files Browse the repository at this point in the history
Fix ttf path by removing '?'.  Resolves webpack issue.
  • Loading branch information
JLLeitschuh committed Aug 13, 2015
2 parents 17d816c + 2d57abe commit 7d88c7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/less/icons.less
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
src: url('@{font-path}ui-grid.eot');
src: url('@{font-path}ui-grid.eot#iefix') format('embedded-opentype'),
url('@{font-path}ui-grid.woff') format('woff'),
url('@{font-path}ui-grid.ttf?') format('truetype'),
url('@{font-path}ui-grid.ttf') format('truetype'),
url('@{font-path}ui-grid.svg?#ui-grid') format('svg');
font-weight: normal;
font-style: normal;
Expand Down Expand Up @@ -53,4 +53,4 @@
.ui-grid-icon-blank::before {
width: 1em;
content: ' ';
}
}

0 comments on commit 7d88c7b

Please sign in to comment.