explict toolbar close button
This commit is contained in:
parent
a8b72623bb
commit
1de9535cbd
1 changed files with 7 additions and 0 deletions
|
@ -160,6 +160,13 @@ function ComicBook(id, srcs, opts) {
|
||||||
toolbar: $(document.createElement("div"))
|
toolbar: $(document.createElement("div"))
|
||||||
.attr("id", "cb-toolbar")
|
.attr("id", "cb-toolbar")
|
||||||
.addClass("cb-control")
|
.addClass("cb-control")
|
||||||
|
.append(
|
||||||
|
$(document.createElement("button"))
|
||||||
|
.text("X")
|
||||||
|
.click(function(){
|
||||||
|
ComicBook.prototype.toggleToolbar();
|
||||||
|
})
|
||||||
|
)
|
||||||
.append(
|
.append(
|
||||||
$(document.createElement("button"))
|
$(document.createElement("button"))
|
||||||
.text("layout")
|
.text("layout")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue