diff --git a/dashboard-ui/addPlugin.html b/dashboard-ui/addPlugin.html
index 2244d5c147..9c48cbedfe 100644
--- a/dashboard-ui/addPlugin.html
+++ b/dashboard-ui/addPlugin.html
@@ -50,7 +50,7 @@
-
+
This developer has not provided a PayPal email. Please see their
website for registration information.
diff --git a/dashboard-ui/css/images/cloudNetwork.png b/dashboard-ui/css/images/cloudNetwork.png
deleted file mode 100644
index 2f917c1a0b..0000000000
Binary files a/dashboard-ui/css/images/cloudNetwork.png and /dev/null differ
diff --git a/dashboard-ui/css/images/currentUserDefaultBlack.png b/dashboard-ui/css/images/currentUserDefaultBlack.png
deleted file mode 100644
index fff3f51a23..0000000000
Binary files a/dashboard-ui/css/images/currentUserDefaultBlack.png and /dev/null differ
diff --git a/dashboard-ui/css/images/currentUserDefaultWhite.png b/dashboard-ui/css/images/currentUserDefaultWhite.png
deleted file mode 100644
index acfa26e9de..0000000000
Binary files a/dashboard-ui/css/images/currentUserDefaultWhite.png and /dev/null differ
diff --git a/dashboard-ui/css/images/itemDetails/audioDefault.png b/dashboard-ui/css/images/items/detail/audio.png
similarity index 100%
rename from dashboard-ui/css/images/itemDetails/audioDefault.png
rename to dashboard-ui/css/images/items/detail/audio.png
diff --git a/dashboard-ui/css/images/itemDetails/gameDefault.png b/dashboard-ui/css/images/items/detail/game.png
similarity index 100%
rename from dashboard-ui/css/images/itemDetails/gameDefault.png
rename to dashboard-ui/css/images/items/detail/game.png
diff --git a/dashboard-ui/css/images/itemDetails/videoDefault.png b/dashboard-ui/css/images/items/detail/video.png
similarity index 100%
rename from dashboard-ui/css/images/itemDetails/videoDefault.png
rename to dashboard-ui/css/images/items/detail/video.png
diff --git a/dashboard-ui/css/images/items/list/chapter.png b/dashboard-ui/css/images/items/list/chapter.png
new file mode 100644
index 0000000000..d371a603a1
Binary files /dev/null and b/dashboard-ui/css/images/items/list/chapter.png differ
diff --git a/dashboard-ui/css/images/defaultCollectionImage.png b/dashboard-ui/css/images/items/list/collection.png
similarity index 100%
rename from dashboard-ui/css/images/defaultCollectionImage.png
rename to dashboard-ui/css/images/items/list/collection.png
diff --git a/dashboard-ui/css/images/movieFolder.png b/dashboard-ui/css/images/movieFolder.png
deleted file mode 100644
index ac52cab359..0000000000
Binary files a/dashboard-ui/css/images/movieFolder.png and /dev/null differ
diff --git a/dashboard-ui/css/images/donatepp.png b/dashboard-ui/css/images/supporter/donatepaypal.png
similarity index 100%
rename from dashboard-ui/css/images/donatepp.png
rename to dashboard-ui/css/images/supporter/donatepaypal.png
diff --git a/dashboard-ui/css/images/premiumflag.png b/dashboard-ui/css/images/supporter/premiumflag.png
similarity index 100%
rename from dashboard-ui/css/images/premiumflag.png
rename to dashboard-ui/css/images/supporter/premiumflag.png
diff --git a/dashboard-ui/css/images/registerpp.png b/dashboard-ui/css/images/supporter/registerpaypal.png
similarity index 100%
rename from dashboard-ui/css/images/registerpp.png
rename to dashboard-ui/css/images/supporter/registerpaypal.png
diff --git a/dashboard-ui/css/images/suppbadge.png b/dashboard-ui/css/images/supporter/supporterbadge.png
similarity index 100%
rename from dashboard-ui/css/images/suppbadge.png
rename to dashboard-ui/css/images/supporter/supporterbadge.png
diff --git a/dashboard-ui/css/images/supporterflag.png b/dashboard-ui/css/images/supporter/supporterflag.png
similarity index 100%
rename from dashboard-ui/css/images/supporterflag.png
rename to dashboard-ui/css/images/supporter/supporterflag.png
diff --git a/dashboard-ui/scripts/ItemDetailPage.js b/dashboard-ui/scripts/ItemDetailPage.js
index 3478a15513..55899f9003 100644
--- a/dashboard-ui/scripts/ItemDetailPage.js
+++ b/dashboard-ui/scripts/ItemDetailPage.js
@@ -108,15 +108,15 @@
});
}
else if (item.MediaType == "Audio") {
- url = "css/images/itemDetails/audioDefault.png";
+ url = "css/images/items/detail/audio.png";
useBackgroundColor = true;
}
else if (item.MediaType == "Game") {
- url = "css/images/itemDetails/gameDefault.png";
+ url = "css/images/items/detail/game.png";
useBackgroundColor = true;
}
else {
- url = "css/images/itemDetails/videoDefault.png";
+ url = "css/images/items/detail/video.png";
useBackgroundColor = true;
}
@@ -299,7 +299,7 @@
html += '
';
} else {
- html += '
';
+ html += '
';
}
html += '' + chapter_name + '
';
@@ -344,29 +344,29 @@
if (imageTags.Logo) {
- html += ItemDetailPage.createGalleryImage(item, "Logo", item.ImageTags.Logo);
+ html += ItemDetailPage.createGalleryImage(item.Id, "Logo", item.ImageTags.Logo);
}
if (imageTags.Thumb) {
- html += ItemDetailPage.createGalleryImage(item, "Thumb", item.ImageTags.Thumb);
+ html += ItemDetailPage.createGalleryImage(item.Id, "Thumb", item.ImageTags.Thumb);
}
if (imageTags.Art) {
- html += ItemDetailPage.createGalleryImage(item, "Art", item.ImageTags.Art);
+ html += ItemDetailPage.createGalleryImage(item.Id, "Art", item.ImageTags.Art);
}
if (imageTags.Menu) {
- html += ItemDetailPage.createGalleryImage(item, "Menu", item.ImageTags.Menu);
+ html += ItemDetailPage.createGalleryImage(item.Id, "Menu", item.ImageTags.Menu);
}
if (imageTags.Disc) {
- html += ItemDetailPage.createGalleryImage(item, "Disc", item.ImageTags.Disc);
+ html += ItemDetailPage.createGalleryImage(item.Id, "Disc", item.ImageTags.Disc);
}
if (imageTags.Box) {
- html += ItemDetailPage.createGalleryImage(item, "Box", item.ImageTags.Box);
+ html += ItemDetailPage.createGalleryImage(item.Id, "Box", item.ImageTags.Box);
}
if (item.BackdropImageTags) {
@@ -380,7 +380,7 @@
$('#galleryContent', page).html(html).trigger('create');
},
- createGalleryImage: function(item_id, type, tag, index) {
+ createGalleryImage: function(itemId, type, tag, index) {
var downloadWidth = 400;
var lightboxWidth = 800;
@@ -389,7 +389,7 @@
if (typeof(index)=="undefined") index = 0;
html += '';
- html += '
';
html += '