Skip to content

Instantly share code, notes, and snippets.

@EdCharbeneau
Last active September 26, 2018 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EdCharbeneau/227f9ce51ef97596fcf204f969896d28 to your computer and use it in GitHub Desktop.
Save EdCharbeneau/227f9ce51ef97596fcf204f969896d28 to your computer and use it in GitHub Desktop.
Moving JS outside of Razor
<div>
Razor things go here
</div>
@section Scripts {
<script src="myModule.js"></script>
<script>
myModule.init({
someRoute: @Url.Action("myRoute"),
someSetting: @Model.SomeSettingValue
})
</script>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment