Skip to content

Commit

Permalink
Added a render section for additional scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb committed Dec 18, 2012
1 parent ffcf59b commit 0c4f13b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/MetroAppSite/Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,16 @@
@Scripts.Render("~/scripts/bootMetroScript")

@Html.Partial("AppBar/_appBarPartial") @* Customizeable Metro-style AppBar *@

@RenderSection("Scripts", false)

@Html.Partial("ThirdParty/_userVoiceScriptPartial") @* Customize this to include your own UserVoice (http://uservoice.com) system for managing customer feedback and support *@
@Html.Partial("ThirdParty/_googleAnalyticsScriptPartial") @* Customize this to include your own Google Analytics tracking ID *@

<script type="text/javascript">
$("document").ready(function () {
$('#bootFlipView').carousel({ interval: 3500 });
});
<script type="text/javascript">
$("document").ready(function () {
$('#bootFlipView').carousel({ interval: 3500 });
});
</script>
</body>
</html>

0 comments on commit 0c4f13b

Please sign in to comment.