Yes, I have asked in the past and it was answered.
I've read the replies but they are not .... compatible (?) with the structure that works now
I want to make a new button.
Existing code:
<div id="GButtonM_TWK">
<md-button class="md-button program-names darkred">
<i class="material-icons">
<span> videogame_asset</span> // this is the icon used.
<md-tooltip>Tweaks</md-tooltip>
</i>
</md-button>
</div>
<script>
(function($scope) {
$('#GButtonM_TWK').on('click', function(e) {
e.preventDefault(); //prevent default behavior
$scope.send({"topic":"momentary_regular","payload": "Tweaks"});
});
})(scope);
</script>
So that works.
But looking on sites the <class> and <span> are the other way around.
I would like to find the original site I used with that original set of icons and I could search in there.