I have a set of static angular bootstrap tabs: <tabset> <tab heading="Static title" select="remember(0)">Static content</tab> <tab heading="Another title" select="remember(1)">Static content</tab> <tab heading="Another title" select="remember(2)">Static content</tab> </tabset> I created a function to store which tab was last selected. However, I can't seem to find a way, from the controller, to se
