We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 343677f + 1f83d7f commit ea53905Copy full SHA for ea53905
src/js/bs3/module/Buttons.js
@@ -15,6 +15,9 @@ define([
15
var invertedKeyMap = func.invertObject(options.keyMap[agent.isMac ? 'mac' : 'pc']);
16
17
var representShortcut = this.representShortcut = function (editorMethod) {
18
+ if (!options.shortcuts) {
19
+ return '';
20
+ }
21
var shortcut = invertedKeyMap[editorMethod];
22
if (agent.isMac) {
23
shortcut = shortcut.replace('CMD', '⌘').replace('SHIFT', '⇧');
0 commit comments