Skip to content

Commit

Permalink
Change layout to HTML5. Fixes Firefox display
Browse files Browse the repository at this point in the history
Previously, the geminabox HTML did not have a doctype, which caused
Firefox to render in "quirks" mode, which caused the delete buttons not
to show up on mouseover.  Added the HTML5 doctype, and made the single
change required to make the HTML compliant HTML5.
  • Loading branch information
gcampbell authored and tomlea committed Aug 12, 2010
1 parent 0259512 commit db0d5de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion views/layout.erb
@@ -1,7 +1,8 @@
<!DOCTYPE html>
<html>
<head>
<title>Gem in a Box</title>
<link rel="stylesheet" href="/master.css" type="text/css" media="screen" charset="utf-8">
<link rel="stylesheet" href="/master.css" type="text/css" media="screen">
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom Feed">
<script type="text/javascript" src="/jquery.js"></script>
<script type="text/javascript" src="/master.js"></script>
Expand Down

0 comments on commit db0d5de

Please sign in to comment.