refactor(): reorganize source files

This commit is contained in:
Andy Joslin
2014-04-14 10:35:19 -06:00
parent ad8ea7a693
commit 14a2790749
192 changed files with 3407 additions and 5237 deletions

26
test/css/progress.html Normal file
View File

@@ -0,0 +1,26 @@
<html>
<head>
<meta charset="utf-8">
<title>Progress</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<link href="../../dist/css/ionic.css" rel="stylesheet">
</head>
<body>
<header class="bar bar-header bar-dark">
<h1 class="title">Progress</h1>
</header>
<main class="content padding has-header">
<progress></progress>
<progress value=3 max=10></progress>
<progress value=7 max=10></progress>
<p><a class="button button-secondary" href="./">All CSS Tests</a></p>
</main>
</body>
</html>