X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/472cf099a0373809eddb663ca4878c241bc86085..342d7985a8765b226a416585a3cc01cecff9a394:/redakcja/static/js/wiki/view_editor_source.js?ds=sidebyside

diff --git a/redakcja/static/js/wiki/view_editor_source.js b/redakcja/static/js/wiki/view_editor_source.js
index 4225d1d2..547456f0 100644
--- a/redakcja/static/js/wiki/view_editor_source.js
+++ b/redakcja/static/js/wiki/view_editor_source.js
@@ -19,7 +19,7 @@
 				lineNumbers: true,
 				width: "100%",
 				height: "100%",
-				tabMode: 'spaces',
+				tabMode: 'default',
 				indentUnit: 0,
 				readOnly: CurrentDocument.readonly || false,
 				initCallback: function(){
@@ -29,15 +29,11 @@
 							$(event.button).trigger('click');
 							event.button = null;
 						}
-					}, function(event) {
-						/* CM reports characters 2 times - as event and as code */
-						if((typeof event) != "object")
-							return false;
-
+					}, function(keycode, event) {
 						if(!event.altKey)
 							return false;
 
-						var c = String.fromCharCode(event.keyCode).toLowerCase();
+						var c = String.fromCharCode(keycode).toLowerCase();
 						var button = $("#source-editor button[data-ui-accesskey='"+c+"']");
 						if(button.length == 0)
 							return false;