Merge pull request #1135 from atom/workspace-class

Use `.workspace` rather than `body` for keybindings
This commit is contained in:
Ben Ogle
2013-11-19 18:50:43 -08:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
'body.platform-darwin':
'.platform-darwin':
# Apple specific
'meta-q': 'application:quit'
'meta-h': 'application:hide'

View File

@@ -1,4 +1,4 @@
'body.platform-win32':
'.platform-win32':
# Atom Specific
'enter': 'core:confirm'
'escape': 'core:cancel'

View File

@@ -22,6 +22,6 @@
}
</script>
</head>
<body tabindex="-1">
<body class="workspace" tabindex="-1">
</body>
</html>