You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As noted in #50, this is a proposal to add an alias method showText() that combines commonly used lines of code:
myToast.text="Hello World!";myToast.show();
myToast.showText("Hello World!");
This method would serve to reduce the need to use the two lines in the former snippet in conjunction, especially if the setting and immediate showing of text in a <paper-toast> element is a common action across an app or component.
The text was updated successfully, but these errors were encountered:
As noted in #50, this is a proposal to add an alias method
showText()
that combines commonly used lines of code:This method would serve to reduce the need to use the two lines in the former snippet in conjunction, especially if the setting and immediate showing of text in a
<paper-toast>
element is a common action across an app or component.The text was updated successfully, but these errors were encountered: