Skip to content

Instantly share code, notes, and snippets.

@SoldierCoder
Created August 7, 2014 20:43
Show Gist options
  • Save SoldierCoder/6a699708489409b24945 to your computer and use it in GitHub Desktop.
Save SoldierCoder/6a699708489409b24945 to your computer and use it in GitHub Desktop.
tabbed panels
app.controller('PanelController', function() {
this.items = badges;
this.tab = 1;
this.selectTab = function(setTab) {
this.tab = setTab;
};
this.isSelected = function(checkTab) {
return this.tab === checkTab;
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment