-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add option to create new collection from the collection menu (#225)
- Loading branch information
1 parent
72fad55
commit e8ba65e
Showing
3 changed files
with
47 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,24 @@ | ||
<a href="" class="dropdown-toggle" data-toggle="dropdown" | ||
id="collection-menu-title" aria-haspopup="true" aria-expanded="false">Collections <span class="caret"></span> | ||
</a> | ||
<ul class="dropdown-menu"></ul> | ||
<ul class="dropdown-menu"> | ||
<li role=separator class="divider"></li> | ||
<li> | ||
<form class="form-inline"> | ||
<div class="form-group"> | ||
<label for=collection-name-{{&cid}} class="sr-only"> | ||
Name | ||
</label> | ||
<input | ||
type=text | ||
id=collection-name-{{&cid}} | ||
placeholder="Name" | ||
class="form-control" | ||
> | ||
</div> | ||
<button type=submit class="btn btn-primary btn-sm" aria-label="Create"> | ||
<span class="glyphicon glyphicon-plus" aria-hidden=true></span> | ||
</button> | ||
</form> | ||
</li> | ||
</ul> |
This file contains 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