Skip to content

Commit

Permalink
- Remove dead keyboard shortcut
Browse files Browse the repository at this point in the history
- Fix CSS typo that broke scrolling in new Groups tab.
  • Loading branch information
Katharine committed Jul 26, 2008
1 parent 7cf6030 commit 82f20e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions client/AjaxLife.Keyboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ AjaxLife.Keyboard = function() {
case 73: // i
AjaxLife.Inventory.toggle();
break;
case 84: // t
AjaxLife.InstantMessage.toggle();
break;
case 70: // f
AjaxLife.Search.toggle();
break;
Expand Down Expand Up @@ -94,8 +91,8 @@ AjaxLife.Keyboard = function() {
init: function() {
var body = Ext.get(document.body);
body.addKeyListener({
// [h , i , t , f , m , q ]
key: [72, 73, 84, 70, 77, 81],
// [h , i , f , m , q ]
key: [72, 73, 70, 77, 81],
ctrl: true,
shift: false,
alt: false
Expand Down
2 changes: 1 addition & 1 deletion client/ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ html {
}

/* Add tabs here to make sure they can be scrolled - by default, they can't be. */
#contacts-online-tab, #contacts-offline-tab, #contacts-group-tab, #search-people-tab {
#contacts-online-tab, #contacts-offline-tab, #contacts-groups-tab, #search-people-tab {
overflow: auto;
}

Expand Down

0 comments on commit 82f20e7

Please sign in to comment.