When I click on links they do not seem to work. When I right click them and open in a new tab they open correctly.
I can't figure out the reason for this behavior.
Here is the code for my _layout.cshtml file
<!DOCTYPE html>
<html>
<head>
...
<!-- Roboto -->
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:400,500,700">
@Styles.Render("~/Content/css")
@Styles.Render("~/Content/ratchet")
@Scripts.Render("~/bundles/modernizr")
@Scripts.Render("~/bundles/ratchet")
</head>
<body>
<div class="content">
@RenderBody()
</div>
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
</body>
</html>
And here is an example of a link I'd put in index.cshtml
<a href="@Url.Action("NewList", "Home", null)">Submit</a>
<a href="/Home/NewList">Submit 2</a>
Both static and generated behave the same leading me to think this is a Ratchet issue.
EDIT 1 Apparently even the toggle is not working (again no JS errors)
<div class="toggle active">
<div class="toggle-handle"></div>
</div>
<div class="toggle">
<div class="toggle-handle"></div>
</div>
It works in a plain HTML template so I must assume this is from a .Render issue?
http://goratchet.com/components/
EDIT 2:
Many of the components don't seem to be working, I've found a way to bypass this issue by replacing the links with forms that have a submit button and hidden values to POST to the required Action.
Terrible for the UI but at least the buttons are working.