mirror of https://github.com/lidarr/Lidarr
Renamed notifications to connect in settings
This commit is contained in:
parent
923f34e905
commit
24117047b8
|
@ -4,7 +4,7 @@
|
||||||
<li>
|
<li>
|
||||||
<div class="notification-item add-card x-add-card">
|
<div class="notification-item add-card x-add-card">
|
||||||
<span class="center well">
|
<span class="center well">
|
||||||
<i class="icon-plus" title="Add Notification"/>
|
<i class="icon-plus" title="Add Connection"/>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -103,7 +103,7 @@ define(
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ui.notificationsTab.tab('show');
|
this.ui.notificationsTab.tab('show');
|
||||||
this._navigate('settings/notifications');
|
this._navigate('settings/connect');
|
||||||
},
|
},
|
||||||
|
|
||||||
_showGeneral: function (e) {
|
_showGeneral: function (e) {
|
||||||
|
@ -164,6 +164,9 @@ define(
|
||||||
case 'downloadclient':
|
case 'downloadclient':
|
||||||
this._showDownloadClient();
|
this._showDownloadClient();
|
||||||
break;
|
break;
|
||||||
|
case 'connect':
|
||||||
|
this._showNotifications();
|
||||||
|
break;
|
||||||
case 'notifications':
|
case 'notifications':
|
||||||
this._showNotifications();
|
this._showNotifications();
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<li><a href="#quality" class="x-quality-tab no-router">Quality</a></li>
|
<li><a href="#quality" class="x-quality-tab no-router">Quality</a></li>
|
||||||
<li><a href="#indexers" class="x-indexers-tab no-router">Indexers</a></li>
|
<li><a href="#indexers" class="x-indexers-tab no-router">Indexers</a></li>
|
||||||
<li><a href="#download-client" class="x-download-client-tab no-router">Download Client</a></li>
|
<li><a href="#download-client" class="x-download-client-tab no-router">Download Client</a></li>
|
||||||
<li><a href="#notifications" class="x-notifications-tab no-router">Notifications</a></li>
|
<li><a href="#notifications" class="x-notifications-tab no-router">Connect</a></li>
|
||||||
<li><a href="#general" class="x-general-tab no-router">General</a></li>
|
<li><a href="#general" class="x-general-tab no-router">General</a></li>
|
||||||
<li class="pull-right"><button class="btn btn-primary x-save-settings">Save</button></li>
|
<li class="pull-right"><button class="btn btn-primary x-save-settings">Save</button></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
<div class="tab-content">
|
<div class="tab-content">
|
||||||
<div class="tab-pane" id="media-management"></div>
|
<div class="tab-pane" id="media-management"></div>
|
||||||
<div class="tab-pane" id="quality"></div>
|
<div class="tab-pane" id="quality"></div>
|
||||||
<div class="tab-pane" id="indexers">indexers...</div>
|
<div class="tab-pane" id="indexers"></div>
|
||||||
<div class="tab-pane" id="download-client"></div>
|
<div class="tab-pane" id="download-client"></div>
|
||||||
<div class="tab-pane" id="notifications"></div>
|
<div class="tab-pane" id="notifications"></div>
|
||||||
<div class="tab-pane" id="general"></div>
|
<div class="tab-pane" id="general"></div>
|
||||||
|
|
Loading…
Reference in New Issue