mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 17:47:08 +00:00
Replaced root specific absolute paths with relative paths.
This commit is contained in:
parent
86eb70bcbb
commit
e978cc1261
4 changed files with 7 additions and 7 deletions
|
@ -20,7 +20,7 @@
|
|||
$.gritter.add({
|
||||
title: data.Title,
|
||||
text: data.Text,
|
||||
image: '/content/images/success.png',
|
||||
image: '../../content/images/success.png',
|
||||
class_name: 'gritter-success'
|
||||
});
|
||||
}
|
||||
|
@ -28,7 +28,7 @@
|
|||
$.gritter.add({
|
||||
title: data.Title,
|
||||
text: data.Text,
|
||||
image: '/content/images/error.png',
|
||||
image: '../../content/images/error.png',
|
||||
class_name: 'gritter-fail'
|
||||
});
|
||||
}
|
||||
|
@ -41,7 +41,7 @@
|
|||
$.gritter.add({
|
||||
title: 'Request failed',
|
||||
text: this.url,
|
||||
image: '/content/images/error.png',
|
||||
image: '../../content/images/error.png',
|
||||
class_name: 'gritter-fail'
|
||||
});
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
@model NzbDrone.Web.Models.NotificationSettingsModel
|
||||
|
||||
@section HeaderContent{
|
||||
<link rel="stylesheet" type="text/css" href="/Content/Settings.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../../Content/Settings.css" />
|
||||
|
||||
<style>
|
||||
.notifier
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
@using NzbDrone.Web.Helpers;
|
||||
@model NzbDrone.Web.Models.QualityModel
|
||||
@section HeaderContent{
|
||||
<link rel="stylesheet" type="text/css" href="/Content/Settings.css" />
|
||||
<link href="/Content/QualitySettings.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="../../Content/Settings.css" />
|
||||
<link href="../../Content/QualitySettings.css" rel="stylesheet" type="text/css" />
|
||||
}
|
||||
@section TitleContent{
|
||||
Settings
|
||||
|
|
Loading…
Reference in a new issue