Don't set 'noink' attribute on paper-item elements

As of Polymer 1.x, the attribute has no effect.
This commit is contained in:
Oliver Hamlet
2016-03-05 11:49:26 +00:00
parent 143cb6cb29
commit 37163a77d3
2 changed files with 0 additions and 3 deletions
-1
View File
@@ -70,7 +70,6 @@
settings.games.forEach((game) => {
const menuItem = document.createElement('paper-item');
menuItem.setAttribute('value', game.folder);
menuItem.setAttribute('noink', '');
menuItem.textContent = game.name;
gameMenu.appendChild(menuItem);
gameSelect.appendChild(menuItem.cloneNode(true));
-2
View File
@@ -158,7 +158,6 @@
result.forEach((language) => {
const settingsItem = document.createElement('paper-item');
settingsItem.setAttribute('value', language.locale);
settingsItem.setAttribute('noink', '');
settingsItem.textContent = language.name;
settingsLangSelect.appendChild(settingsItem);
messageLangSelect.appendChild(settingsItem.cloneNode(true));
@@ -198,7 +197,6 @@
result.forEach((gameType) => {
const item = document.createElement('paper-item');
item.setAttribute('value', gameType);
item.setAttribute('noink', '');
item.textContent = gameType;
select.appendChild(item);
});