Replaced root specific absolute paths with relative paths.

This commit is contained in:
Mark McDowall 2011-11-11 11:24:51 -08:00
commit e978cc1261
4 changed files with 7 additions and 7 deletions

View file

@ -8,7 +8,7 @@
@foreach (var root in Model)
{
<div class="actionButton delete">
<img src="/Content/Images/x_16.png" alt="delete" id='@root'/>
<img src="../../Content/Images/x_16.png" alt="delete" id='@root'/>
<span>@root</span>
</div>
}