Skip to content

Commit d3bfbc0

Browse files
committed
Merge pull request #692 from Soundnode/code-refactoring
add shortcuts help, improve grunt dev task, add how to use shortcut
2 parents f5a04b7 + 39c2797 commit d3bfbc0

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

app/public/js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ app.config(function (
1515
) {
1616

1717
// Hotkeys config
18-
hotkeysProvider.includeCheatSheet = false;
18+
hotkeysProvider.includeCheatSheet = true;
1919

2020
// unmatched url redirect to /
2121
$urlRouterProvider.otherwise('/');

app/public/js/components/header/settingsNav.jsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ class SettingsList extends Component {
2121
<li className="subNav_nav_item">
2222
<a data-ui-sref="news">News</a>
2323
</li>
24+
<li className="subNav_nav_item">
25+
<a>Shortcuts (shift + ?)</a>
26+
</li>
2427
</ul>
2528
)
2629
}

tasks/aliases.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ build:
55
- 'nwjs'
66

77
dev:
8-
- 'sass:dev'
8+
- 'sass:dev'
9+
- 'shell'

0 commit comments

Comments
 (0)