Shortcut keys update
Shortcut keys for Save, New, and Duplicate now include alt
This commit is contained in:
parent
d861934dfc
commit
3fb9caa5b6
|
@ -262,9 +262,9 @@ haste.prototype.configureButtons = function() {
|
||||||
{
|
{
|
||||||
$where: $('#box2 .save'),
|
$where: $('#box2 .save'),
|
||||||
label: 'Save',
|
label: 'Save',
|
||||||
shortcutDescription: 'control + s',
|
shortcutDescription: 'control + alt + s',
|
||||||
shortcut: function(evt) {
|
shortcut: function(evt) {
|
||||||
return evt.ctrlKey && (evt.keyCode === 83);
|
return evt.ctrlKey && evt.altKey && (evt.keyCode === 83);
|
||||||
},
|
},
|
||||||
action: function() {
|
action: function() {
|
||||||
if (_this.$textarea.val().replace(/^\s+|\s+$/g, '') !== '') {
|
if (_this.$textarea.val().replace(/^\s+|\s+$/g, '') !== '') {
|
||||||
|
@ -276,7 +276,7 @@ haste.prototype.configureButtons = function() {
|
||||||
$where: $('#box2 .new'),
|
$where: $('#box2 .new'),
|
||||||
label: 'New',
|
label: 'New',
|
||||||
shortcut: function(evt) {
|
shortcut: function(evt) {
|
||||||
return evt.ctrlKey && evt.altKey && evt.keyCode === 78
|
return evt.ctrlKey && evt.altKey && evt.keyCode === 78
|
||||||
},
|
},
|
||||||
shortcutDescription: 'control + atl + n',
|
shortcutDescription: 'control + atl + n',
|
||||||
action: function() {
|
action: function() {
|
||||||
|
@ -287,9 +287,9 @@ haste.prototype.configureButtons = function() {
|
||||||
$where: $('#box2 .duplicate'),
|
$where: $('#box2 .duplicate'),
|
||||||
label: 'Duplicate & Edit',
|
label: 'Duplicate & Edit',
|
||||||
shortcut: function(evt) {
|
shortcut: function(evt) {
|
||||||
return _this.doc.locked && evt.ctrlKey && evt.keyCode === 68;
|
return _this.doc.locked && evt.ctrlKey && evt.altKey && evt.keyCode === 68;
|
||||||
},
|
},
|
||||||
shortcutDescription: 'control + d',
|
shortcutDescription: 'control + alt + d',
|
||||||
action: function() {
|
action: function() {
|
||||||
_this.duplicateDocument();
|
_this.duplicateDocument();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue