remove ^L for saving

pull/8/head
John Crepezzi 2011-11-29 20:11:09 -05:00
parent 615fedd6c7
commit 0f02d83d24
2 changed files with 2 additions and 2 deletions

View File

@ -220,7 +220,7 @@ haste.prototype.configureButtons = function() {
label: 'Save',
shortcutDescription: 'control + s',
shortcut: function(evt) {
return evt.ctrlKey && (evt.keyCode === 76 || evt.keyCode === 83);
return evt.ctrlKey && (evt.keyCode === 83);
},
action: function() {
if (_this.$textarea.val().replace(/^\s+|\s+$/g, '') !== '') {

File diff suppressed because one or more lines are too long