Skip to content

Instantly share code, notes, and snippets.

@recidive
Created February 6, 2014 17:57
Show Gist options
  • Save recidive/8849303 to your computer and use it in GitHub Desktop.
Save recidive/8849303 to your computer and use it in GitHub Desktop.
Button group with multiple dropdowns model.
$scope.buttons = [
{
"type": "normal",
"title": "First normal"
},
{
"type": "normal",
"title": "Second normal"
},
{
"type": "dropdown",
"title": "Third dropdown",
"items": [
{
"title": "Dropdown link",
"url": "#"
},
{
"title": "Dropdown link",
"url": "#"
}
]
},
{
"type": "dropdown",
"title": "Forth dropdown",
"items": [
{
"title": "Dropdown link",
"url": "#"
},
{
"title": "Dropdown link",
"url": "#"
}
]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment