mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
add a test case for the Safari bug
This commit is contained in:
parent
b3926f5ce1
commit
48708ff957
1 changed files with 110 additions and 0 deletions
110
public/f/grid-bug.html
Normal file
110
public/f/grid-bug.html
Normal file
|
|
@ -0,0 +1,110 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
|
||||
<head>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>samhuri.net</title>
|
||||
|
||||
<link rel="icon" type="image/gif" href="/images/favicon.gif">
|
||||
|
||||
<link rel="stylesheet" href="/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/css/normalize.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<style>
|
||||
@media (min-width: 64rem) {
|
||||
html { font-size: 112%; }
|
||||
}
|
||||
@media (min-width: 64rem) {
|
||||
html { font-size: 120%; }
|
||||
}
|
||||
</style>
|
||||
|
||||
<link rel="author" type="text/plain" href="/humans.txt">
|
||||
<link rel="alternate" type="application/rss+xml" href="/feed.xml" title="samhuri.net">
|
||||
|
||||
<script>
|
||||
if (typeof console === 'undefined') {
|
||||
console = { log: function() {} }
|
||||
}
|
||||
window.SJS = {
|
||||
ready: function(fn) {
|
||||
if (document.addEventListener) {
|
||||
document.addEventListener('DOMContentLoaded', fn, false)
|
||||
} else if (window.attachEvent) {
|
||||
window.attachEvent('onload', fn)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body class="index">
|
||||
|
||||
<header class="primary">
|
||||
<div class="title">
|
||||
<h1><a href="/">samhuri.net</a></h1>
|
||||
<br>
|
||||
<h4>By <a href="/about">Sami Samhuri</a></h4>
|
||||
</div>
|
||||
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/archive">Archive</a></li>
|
||||
<li><a href="/projects">Projects</a></li>
|
||||
<li class="email"><a href="mailto:sami@samhuri.net"><i class="fa fa-envelope"></i></a></li>
|
||||
<li class="rss"><a href="/feed.xml"><i class="fa fa-rss"></i></a></li>
|
||||
<li class="twitter"><a href="https://twitter.com/_sjs"><i class="fa fa-twitter"></i></a></li>
|
||||
<li class="github"><a href="https://github.com/samsonjs"><i class="fa fa-github"></i></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
</header>
|
||||
|
||||
<article class="container">
|
||||
|
||||
<article>
|
||||
<header>
|
||||
<h2><a href="/posts/2014/02/ember-structure">Structure of an Ember app</a></h2>
|
||||
<time>February 3, 2014</time>
|
||||
</header>
|
||||
<p>I made a diagram of an Ember app. There’s <a href="http://discuss.emberjs.com/t/diagram-of-an-ember-apps-structure/4060">a discussion about it</a> on the
|
||||
<a href="http://discuss.emberjs.com/">Ember Discussion Forum</a>. Here is the source file, created with OmniGraffle: <a href="https://www.dropbox.com/s/onnmn1oq096hv5f/Ember%20structure.graffle">Ember structure.graffle</a></p>
|
||||
|
||||
<p><a href="/f/ember-structure.png"><img src="/f/ember-structure.png" alt="Structure of an Ember app" /></a></p>
|
||||
|
||||
</article>
|
||||
|
||||
<div class="row clearfix">
|
||||
<p class="fin"><i class="fa fa-code"></i></p>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<footer class="container">
|
||||
© 2006 - 2014 <a href="/about">Sami Samhuri</a>
|
||||
</footer>
|
||||
|
||||
|
||||
<script>
|
||||
var _gaq = _gaq || []
|
||||
_gaq.push( ['_setAccount', 'UA-214054-5']
|
||||
, ['_trackPageview']
|
||||
)
|
||||
|
||||
;(function() {
|
||||
var ga = document.createElement('script')
|
||||
ga.type = 'text/javascript'
|
||||
ga.async = true
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'
|
||||
var s = document.getElementsByTagName('script')[0]
|
||||
s.parentNode.insertBefore(ga, s)
|
||||
}())
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Reference in a new issue