X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/889882b4d84fb826afc834040b203dff2fb4a224..470817c5149ca294bd929fb29632a91c985aef0a:/project/static/js/editor.js diff --git a/project/static/js/editor.js b/project/static/js/editor.js index fa796dba..0cbb9341 100644 --- a/project/static/js/editor.js +++ b/project/static/js/editor.js @@ -253,7 +253,9 @@ Panel.prototype.isHotkey = function(event) { if(event.ctrlKey) code = code | 0x200; if(event.shiftKey) code = code | 0x400; - if(this.hotkeys[code] !== null) { + $.log(event.character, this.hotkeys[code]); + + if(this.hotkeys[code]) { return true; } return false; @@ -301,6 +303,10 @@ Editor.prototype.loadConfig = function() { this.fileOptions = this.options; var self = this; + + if(!this.options.recentFiles) + this.options.recentFiles = []; + $.each(this.options.recentFiles, function(index) { if (fileId == self.options.recentFiles[index].fileId) { $.log('Found options for', fileId); @@ -378,7 +384,7 @@ Editor.prototype.saveToBranch = function(msg) var self = this; $.log('Saving to local branch - panel:', changed_panel); - if(!msg) msg = "Zapis z edytora platformy."; + if(!msg) msg = "Szybki zapis z edytora platformy."; if( changed_panel.length === 0) { $.log('Nothing to save.'); @@ -450,9 +456,8 @@ Editor.prototype.autoSave = function() Editor.prototype.onContentChanged = function(event, data) { var self = this; - $('#toolbar-button-save').removeAttr('disabled'); - $('#toolbar-button-commit').attr('disabled', 'disabled'); - $('#toolbar-button-update').attr('disabled', 'disabled'); + $('button.provides-save').removeAttr('disabled'); + $('button.requires-save').attr('disabled', 'disabled'); if(this.autosaveTimer) return; this.autosaveTimer = setTimeout( function() { @@ -495,9 +500,8 @@ Editor.prototype.sendMergeRequest = function (message) { alert("There are unsaved changes - can't commit."); } - var self = this; - $.log('URL !: ', $('#commit-dialog form').attr('action')); - + var self = this; + $.ajax({ url: $('#commit-dialog form').attr('action'), dataType: 'json',