stub out channel mapping
This commit is contained in:
@@ -943,7 +943,7 @@
|
||||
case 'playlist':
|
||||
require(['playlistEditor'], function (playlistEditor) {
|
||||
new playlistEditor().show({
|
||||
items: items,
|
||||
items: [itemId],
|
||||
serverId: serverId
|
||||
});
|
||||
});
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
|
||||
html += '<button is="paper-icon-button-light" class="headerButton headerButtonRight headerVoiceButton hide"><iron-icon icon="mic"></iron-icon></button>';
|
||||
|
||||
html += '<button is="paper-icon-button-light" class="headerButton headerButtonRight btnNotifications clearButton"><div class="btnNotificationsInner">0</div></button>';
|
||||
html += '<button is="paper-icon-button-light" class="headerButton headerButtonRight btnNotifications"><div class="btnNotificationsInner">0</div></button>';
|
||||
|
||||
html += '<button is="paper-icon-button-light" class="headerButton headerButtonRight headerUserButton"><iron-icon icon="person"></iron-icon></button>';
|
||||
|
||||
|
||||
@@ -333,7 +333,7 @@
|
||||
});
|
||||
}
|
||||
|
||||
function showProviderOptions(page, id, button) {
|
||||
function showProviderOptions(page, providerId, button) {
|
||||
|
||||
var items = [];
|
||||
|
||||
@@ -358,10 +358,10 @@
|
||||
switch (id) {
|
||||
|
||||
case 'delete':
|
||||
deleteProvider(page, id);
|
||||
deleteProvider(page, providerId);
|
||||
break;
|
||||
case 'map':
|
||||
mapChannels(page, id);
|
||||
mapChannels(page, providerId);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user