EDIT: merging the various posts since all in a small timeframe
BUG #1
When using the swipe-to-left function on ion-list to show a “Delete” button, there is an error (probably an unchecked null pointer):
TypeError: lastDrag.content is null
in script: /bower_components/ionic/release/js/ionic.bundle.js (Line 6454)
QUESTION #1 - SOLVED
How can we remove the back button text?
EDIT: the question seems to be primarily for iOS platform, since on Android (at least 4.2) there’s no text near the back button.
If overwritten with other text it changes, but what if we don’t want any text but just an icon (custom or not)?
SOLUTION: Just for reference waiting for the release of the documentation, it’s all configured in the $ionicConfigProvider.
This is the code I’ve used:
$ionicConfigProvider.backButton.text('');
$ionicConfigProvider.backButton.previousTitleText(false);
Too bad it can’t be chained, but oh well, we can’t get everything
QUESTION #2
Don’t know if this is Ionic’s scope or angular-route, but even in doubt:
I’ve got a welcome view (/welcome) which leads to a couple of subviews: /app/login and /app/register.
In beta13, navigating /welcome -> /app/login was showing, in the second view, the back button.
Now no back is shown.
Note that the back is correctly showing in the “normal” application flow (after login).
Do I have some misconfiguration?
A similar problem is when using a similar flow: /app/view1 -> /app/view2/subview.
Here the back button is shown, but tapping on it doesn’t do anything. No back, no errors in console.
BUG #2
Setting ‘ios’ as animation for an Android device leads to ugly animations and broken navBars.