Hello
For some reason view title in navbar on android changes if I hit the back button.
I have a home view
<div data-role="view" id="home" data-layout="mainLayout" data-init="home.init" data-show="home.show" data-stretch="true" data-title="">
and a settings view
<div data-role="view" id="settings" data-layout="mainLayout" data-init="settings.init" data-stretch="true" data-title="Settings">
When I hit the back button on a settings view, view title on my home page changes to "Settings", and it should be empty. I dont get it.
Here is the layout I am using
<div data-role="layout" data-id="mainLayout">
<div data-role="header">
<div data-role="navbar">
<a data-role="backbutton" data-align="left" data-icon="customback"></a>
<a data-role="button" data-align="left" data-icon="custommenu" data-click="home.toggleMenu"></a>
<span data-role="view-title"></span>
<a data-role="button" data-align="right" data-icon="custompush"></a>
<a data-role="button" data-align="right" data-icon="customfacebook"></a>
</div>
</div>
</div>