mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Don't set 'noink' attribute on paper-item elements
As of Polymer 1.x, the attribute has no effect.
This commit is contained in:
@@ -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));
|
||||
|
||||
@@ -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);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user