We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I added this in some code i'm writing, so i wouldn't have to pass around escaped titles throughout the application.
This is just a suggestion.
in ViewNavigator.prototype.replaceView ... if (viewDescriptor.backLabel == 'auto') { viewDescriptor.backLabel = this.history.length > 0 ? this.history[this.history.length-1].backLabel : null; } this.history.push...
in ViewNavigator.prototype.pushView ... if (viewDescriptor.backLabel == 'auto') { viewDescriptor.backLabel = this.history.length > 0 ? this.history[this.history.length-1].title : null; } this.history.push...
Thanks for app-ui.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I added this in some code i'm writing, so i wouldn't have to pass around escaped titles throughout the application.
This is just a suggestion.
in ViewNavigator.prototype.replaceView
...
if (viewDescriptor.backLabel == 'auto') {
viewDescriptor.backLabel = this.history.length > 0 ? this.history[this.history.length-1].backLabel : null;
}
this.history.push...
in ViewNavigator.prototype.pushView
...
if (viewDescriptor.backLabel == 'auto') {
viewDescriptor.backLabel = this.history.length > 0 ? this.history[this.history.length-1].title : null;
}
this.history.push...
Thanks for app-ui.
The text was updated successfully, but these errors were encountered: