1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

lowercase html links

This commit is contained in:
Luke Pulverenti 2013-03-28 20:10:15 -04:00
parent 6761d5c3c9
commit a2d6862f0e
26 changed files with 42 additions and 42 deletions

View file

@ -150,7 +150,7 @@
if (userId) {
Dashboard.alert("Settings saved.");
} else {
Dashboard.navigate("userProfiles.html");
Dashboard.navigate("userprofiles.html");
}
},

View file

@ -92,7 +92,7 @@
html += "<li>";
html += "<a href='scheduledTask.html?id=" + task.Id + "'>";
html += "<a href='scheduledtask.html?id=" + task.Id + "'>";
html += "<h3>" + task.Name + "</h3>";

View file

@ -434,7 +434,7 @@ var Dashboard = {
var hasPrimaryImage = item.ImageTags && item.ImageTags.Primary;
var href = item.IsFolder ? (item.Id ? "itemList.html?parentId=" + item.Id : "#") : "itemDetails.html?id=" + item.Id;
var href = item.IsFolder ? (item.Id ? "itemlist.html?parentId=" + item.Id : "#") : "itemdetails.html?id=" + item.Id;
var showText = options.showTitle || !hasPrimaryImage || (item.Type !== 'Movie' && item.Type !== 'Series' && item.Type !== 'Season' && item.Type !== 'Trailer');
@ -539,7 +539,7 @@ var Dashboard = {
html += '<img style="max-height:125px;max-width:200px;" src="' + imageUrl + '" />';
html += '</p>';
html += '<p><button type="button" onclick="Dashboard.navigate(\'editUser.html?userId=' + user.Id + '\');" data-icon="user">View Profile</button></p>';
html += '<p><button type="button" onclick="Dashboard.navigate(\'edituser.html?userId=' + user.Id + '\');" data-icon="user">View Profile</button></p>';
html += '<p><button type="button" onclick="Dashboard.logout();" data-icon="lock">Sign Out</button></p>';
html += '</div>';
@ -857,11 +857,11 @@ var Dashboard = {
selected: page.hasClass("pluginConfigurationPage")
}, {
name: "User Profiles",
href: "userProfiles.html",
href: "userprofiles.html",
selected: page.hasClass("userProfilesConfigurationPage")
}, {
name: "Display Settings",
href: "uiSettings.html",
href: "uisettings.html",
selected: pageElem.id == "displaySettingsPage"
}, {
name: "Advanced",
@ -869,7 +869,7 @@ var Dashboard = {
selected: pageElem.id == "advancedConfigurationPage"
}, {
name: "Scheduled Tasks",
href: "scheduledTasks.html",
href: "scheduledtasks.html",
selected: pageElem.id == "scheduledTasksPage" || pageElem.id == "scheduledTaskPage"
}, {
name: "Help",

View file

@ -19,7 +19,7 @@
} else {
$('.supporterOnly', page).hide();
}
$('#paypalReturnUrl', page).val(ApiClient.getUrl("dashboard/supporterKey.html"));
$('#paypalReturnUrl', page).val(ApiClient.getUrl("dashboard/supporterkey.html"));
Dashboard.hideLoadingMsg();
});
}

View file

@ -22,7 +22,7 @@
html += "<li>";
html += "<a onclick='Dashboard.navigate(\"editUser.html?userId=" + user.Id + "\");' href='#'>";
html += "<a onclick='Dashboard.navigate(\"edituser.html?userId=" + user.Id + "\");' href='#'>";
if (user.PrimaryImageTag) {

View file

@ -6,10 +6,10 @@
if (users.length > 1) {
Dashboard.navigate('wizardLibrary.html');
Dashboard.navigate('wizardlibrary.html');
} else {
Dashboard.navigate('wizardUser.html');
Dashboard.navigate('wizarduser.html');
}
});

View file

@ -51,7 +51,7 @@
Dashboard.hideLoadingMsg();
Dashboard.navigate('wizardLibrary.html');
Dashboard.navigate('wizardlibrary.html');
}
};