Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- app.factory('Breadcrumb', function(){
- var _items = [{
- title: 'Home',
- href: '/'
- }];
- return {
- items: function(){
- return _items;
- },
- add: function(name, link){
- _items.push({
- title: name,
- href: link
- });
- },
- reset: function(){
- _items = [{
- title: 'Home',
- link: '/'
- }];
- }
- };
- });
Advertisement
Add Comment
Please, Sign In to add comment