Jorin Slaybaugh

Results 3 issues of Jorin Slaybaugh

I'm using http://fortawesome.github.com/Font-Awesome/ and the css reference in their file looks like: ``` @font-face { font-family: 'FontAwesome'; src: url('../font/fontawesome-webfont.eot?v=3.0.1'); src: url('../font/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=3.0.1') format('woff'), url('../font/fontawesome-webfont.ttf?v=3.0.1') format('truetype'); font-weight: normal; font-style: normal;...

In my index.cshtml, I have the following ``` @{ ViewBag.Title = "File Manager"; Html.AddScriptReference("Content/js/app.files.js"); } ``` and at the top of app.files.js, I have the following ``` /// /// ///...

I have a more complicated setup, but I've simplified it for the purposes of this question. Imagine that I want every endpoint to be limited to 5 per 20s. I...