removed color enhancement keyboard shortcut
This commit is contained in:
parent
a38ff55da0
commit
efa87a5d64
1 changed files with 2 additions and 8 deletions
|
@ -78,10 +78,7 @@ function ComicBook(id, srcs, opts) {
|
||||||
keyboard: {
|
keyboard: {
|
||||||
next: 78,
|
next: 78,
|
||||||
previous: 80,
|
previous: 80,
|
||||||
control: {
|
toolbar: 84
|
||||||
color: 69,
|
|
||||||
toolbar: 84
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -765,12 +762,9 @@ function ComicBook(id, srcs, opts) {
|
||||||
if (e.keyCode === options.keyboard.next) { side = "right"; }
|
if (e.keyCode === options.keyboard.next) { side = "right"; }
|
||||||
|
|
||||||
// display controls
|
// display controls
|
||||||
if (e.keyCode === options.keyboard.control.toolbar) {
|
if (e.keyCode === options.keyboard.toolbar) {
|
||||||
ComicBook.prototype.toggleToolbar();
|
ComicBook.prototype.toggleToolbar();
|
||||||
}
|
}
|
||||||
if (e.keyCode === options.keyboard.control.color) {
|
|
||||||
ComicBook.prototype.toggleControl("color");
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
throw new ComicBookException(
|
throw new ComicBookException(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue