Skip to content

Commit

Permalink
In theory this will fix #1585... now how to test it?
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Lovell-Smith committed Oct 28, 2013
1 parent 3b3fbbc commit e5d0863
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions src/NuGetGallery/Views/Packages/Edit.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
}

@Styles.Render("~/Content/font-awesome.css")
<!--[if IE 7]>
@Styles.Render("~/Content/font-awesome-ie7.min.css")
<![endif]-->

@section BottomScripts {
@Scripts.Render("~/Scripts/jquery-ui-1.10.3.js")
Expand Down
9 changes: 6 additions & 3 deletions src/NuGetGallery/Views/Packages/VerifyPackage.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
}

@Styles.Render("~/Content/font-awesome.css")
<!--[if IE 7]>
@Styles.Render("~/Content/font-awesome-ie7.min.css")
<![endif]-->
<h1 class="page-heading">Verify Details &amp; Submit</h1>

@ViewHelpers.UploadSequence(2)
Expand Down Expand Up @@ -67,7 +70,7 @@
<p>@value</p>
}
</div>
<div id="@(formid +"Field")" style="display: none">
<div id="@(formid + "Field")" style="display: none">
@Html.EditorFor(func)
@Html.ValidationMessageFor(func)
</div>
Expand Down Expand Up @@ -109,7 +112,7 @@
</div>
<div id="Edit_RequiresLicenseAcceptanceField" style="display: none; width: 100%">
<div class="form-field" style="display: inline">
@Html.DropDownList("Edit.RequiresLicenseAcceptance",
@Html.DropDownList("Edit.RequiresLicenseAcceptance",
new List<SelectListItem>
{
new SelectListItem { Text = "Yes", Value = "true" },
Expand All @@ -125,7 +128,7 @@
<li>
<h4>Listed in Search Results</h4>
<div class="form-field">
@Html.DropDownList("Listed",
@Html.DropDownList("Listed",
new List<SelectListItem>
{
new SelectListItem { Text = "Yes", Value = "true", Selected = true },
Expand Down

0 comments on commit e5d0863

Please sign in to comment.