Use noink for dropdown menu items.

Otherwise the background gets stuck on selection.
This commit is contained in:
Oliver Hamlet
2014-12-22 22:59:00 +00:00
parent 453a6cd64b
commit 84f2b571c8
+1
View File
@@ -97,6 +97,7 @@ for (var i=0; i < repos.length; ++i) {
var option = document.createElement('paper-item');
option.textContent = repos[i][0];
option.setAttribute('data-game', repos[i][1]);
option.setAttribute('noink', '');
gameSelect.appendChild(option);
}