usgs / earthquake-latest-earthquakes

Mobile friendly, interactive earthquake map and list application.
Other
11 stars 25 forks source link

Use hex codes instead of ligatures for Material Icons #255

Closed ehunter-usgs closed 8 years ago

ehunter-usgs commented 8 years ago

The ligatures seem to be breaking in IE event though they should work for IE9+, these should be switched anywhere that they are used in this application:

For example:

<!-- For modern browsers. -->
<i class="material-icons">settings</i>
<!-- For IE9 or below. -->
<i class="material-icons">&#xE8B8;</i>
jmfee-usgs commented 8 years ago

I think this is only when viewing on localhost, or similar. Try using your IP address or hostname.

ehunter-usgs commented 8 years ago

@jmfee-usgs I was viewing the production pages on earthquake.usgs.gov

emartinez-usgs commented 8 years ago

Older browsers will have difficulties with ligatures. Hex codes seem more universal.