mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 08:47:59 +02:00
Cleaned up modals in the UI.
added empty modal for episode info
This commit is contained in:
10
UI/Episode/Search/Layout.js
Normal file
10
UI/Episode/Search/Layout.js
Normal file
@@ -0,0 +1,10 @@
|
||||
"use strict";
|
||||
define(['app'], function () {
|
||||
|
||||
NzbDrone.Episode.Search.Layout = Backbone.Marionette.Layout.extend({
|
||||
template: 'Episode/Search/LayoutTemplate'
|
||||
|
||||
|
||||
});
|
||||
|
||||
});
|
12
UI/Episode/Search/LayoutTemplate.html
Normal file
12
UI/Episode/Search/LayoutTemplate.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<h3>Delete: {{title}}</h3>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h1>Searching for episodes!!!</h1>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="btn" data-dismiss="modal">cancel</button>
|
||||
<button class="btn btn-danger x-confirm-delete">delete</button>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user