Skip to content

Commit

Permalink
Merge pull request #178 from vboctor/patch-2
Browse files Browse the repository at this point in the history
Fix broken css ref + file casing in appcompose
  • Loading branch information
beth-panx committed Oct 3, 2016
2 parents 126c0c6 + 0b50267 commit 0bd9ed3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions generators/mail/templates/html/appcompose/home/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title></title>
<script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js"></script>
<link href="../../Content/Office.css" rel="stylesheet" type="text/css" />
<link href="../../bower_components/microsoft.office.js/styles/OfficeThemes.css" rel="stylesheet" type="text/css" />
<link href="../../bower_components/microsoft.office.js/content/officethemes.css" rel="stylesheet" type="text/css" />
<link href="//appsforoffice.microsoft.com/fabric/1.0/fabric.min.css" rel="stylesheet">
<!--<link href="//appsforoffice.microsoft.com/fabric/1.0/fabric.components.min.css" rel="stylesheet">-->
<script src="//appsforoffice.microsoft.com/lib/1/hosted/office.js"></script>
Expand All @@ -18,11 +18,11 @@
<!-- <script src="../../scripts/jquery.fabric.min.js"></script> -->
<script src="../../scripts/MicrosoftAjax.js"></script>

<link href="../App.css" rel="stylesheet" type="text/css" />
<script src="../App.js"></script>
<link href="../app.css" rel="stylesheet" type="text/css" />
<script src="../app.js"></script>

<link href="Home.css" rel="stylesheet" type="text/css" />
<script src="Home.js"></script>
<link href="home.css" rel="stylesheet" type="text/css" />
<script src="home.js"></script>
</head>

<body>
Expand All @@ -46,4 +46,4 @@ <h1>Welcome</h1>
</div>
</body>

</html>
</html>

0 comments on commit 0bd9ed3

Please sign in to comment.