Created
February 6, 2014 17:57
-
-
Save recidive/8849303 to your computer and use it in GitHub Desktop.
Button group with multiple dropdowns model.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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