Skip to content
This repository has been archived by the owner on May 1, 2020. It is now read-only.

Commit

Permalink
fix(error): (cmd/ctrl)+8 for debug menu
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Nov 14, 2016
1 parent 3b82465 commit 89550af
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 93 deletions.
2 changes: 1 addition & 1 deletion bin/ion-dev.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions bin/ion-dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,8 @@ window.IonicDevServer = {
if (ev.metaKey || ev.ctrlKey) {
// cmd or ctrl key held down

if (key == 49) {
// (cmd/ctrl + 1)
if (key == 56) {
// holding down cmd or ctrl, and 8
self.toggleOptionsMenu();
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/dev-client/sass/_header.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

.ion-diagnostics-header {
background: $header-background;
border-bottom: 0.5px solid $header-border-color;
border-bottom: $hairlines-width solid $header-border-color;
color: $header-text-color;
}

Expand Down
Loading

0 comments on commit 89550af

Please sign in to comment.