I have a tabstrip with multiple tabs, and each tab has its own contentUrl, so data is fetched using ajax.
I noticed that if you delete a tab, and reload the selected tab, it uses the old url from the removed tab. The tabstrip's contentUrls array still has the old values, that probably causes this.
Steps to reproduce:
1) Create a tabstrip with two tabs, with contentUrl set for both separately
2) Select the second tab
3) Remove the first tab (remove())
4) Reload the selected tab (select() and reload())
I suppose I need to manually update the contentUrls array?