Description

The bookmark list directive to render a list of bookmarks, you can put your own html inside the bookmark list to customise it, in order to do this you will need to do the following :-
<collaborate:bookmark-list>
     <li ng-repeat="bookmark in $parent.bookmarks">YOUR CUSTOM CODE HERE</li>
</collaborate:bookmark-list>

Usage

as element:
<collaborate:bookmark-list
       [title="{string}"]
       [delete-label="{string}"]
       [target="{string}"]
       [topic="{number}"]
       [collection="{string}"]
       [date-format="{string}"]
       [url-target="{string}"]>
</collaborate:bookmark-list>

Directive info

  • This directive creates new scope.

Parameters

ParamTypeDetails
title (optional)stringIf set, title will be used displayed above bookmarks
delete-label (optional)stringLabel to display for the delete action. Default: “x”
target (optional)stringIf set, only display bookmarks related to this target document.
topic (optional)numberOptionally, bookmarks can be scoped to a particular topic. If this attribute is set, then the tag will list only those bookmarks that are linked to that topic. Passing topic 0 will check that a topic has not be associated with the bookmark
collection (optional)stringOptionally, bookmarks can be scoped to a particular collection, identified by a string ID. If this attribute is set, then the tag will list only those bookmarks that belong to the given collection.
date-format (optional)stringFormat to use for the bookmark created date. Default: dd/MM/yyyy h:mma. See date format filter for valid formats.
url-target (optional)stringSet an HTML target attribute for the anchor tag. For example use _blank to have the bookmark link open in a new window.