fix web project

This commit is contained in:
Luke Pulverenti 2015-05-30 10:32:18 -04:00
parent e103daf46c
commit 740e8a62a8
5 changed files with 15 additions and 9 deletions

View File

@ -1,9 +1,17 @@
.btnNotifications {
text-decoration: none !important;
position: absolute;
top: 25px !important;
right: 10px !important;
padding: 0 !important;
outline: 0 !important;
}
.btnNotifications:hover {
background: none !important;
}
.btnNotificationsInner {
text-decoration: none !important;
vertical-align: middle;
border-radius: 1000px;
padding: 6px 10px 5px;
@ -136,4 +144,4 @@
.imgNotificationWarning .imgNotificationInner {
background-image: url(images/notifications/error.png);
}
}

View File

@ -53,7 +53,7 @@
</li>
<li>
<label for="txtOpenSubtitlePassword">${LabelOpenSubtitlesPassword}</label>
<input type="password" id="txtOpenSubtitlePassword" />
<input type="password" id="txtOpenSubtitlePassword" autocomplete="off" />
</li>
</ul>
<ul data-role="listview" class="ulForm">

View File

@ -311,6 +311,8 @@
html += user.name;
html += '</a>';
//html += '<a href="#" class="btnNotifications"><div class="btnNotificationsInner">0</div></a>';
html += '<div class="libraryMenuDivider" style="margin-top:0;"></div>';
var homeHref = window.ApiClient ? 'index.html' : 'selectserver.html';

View File

@ -1,6 +1,6 @@
(function ($, document) {
var view = LibraryBrowser.getDefaultItemsView('PosterCard', 'PosterCard');
var view = LibraryBrowser.getDefaultItemsView('Poster', 'Poster');
// The base query options
var query = {
@ -54,10 +54,7 @@
items: result.Items,
shape: "portrait",
context: 'movies-trailers',
showTitle: true,
showYear: true,
lazy: true,
cardLayout: true,
showDetailsMenu: true
});

View File

@ -3,8 +3,7 @@
window.FileSystem = {
fileExists: function (path) {
var exists = NativeFileSystem.fileExists(path);
return false;
return NativeFileSystem.fileExists(path);
}
};