소스 검색

[core] Fix CTRL + Click on AceEditor for HDFS links

Enrico Berti 10 년 전
부모
커밋
448a9f80e9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      desktop/core/src/desktop/static/desktop/js/ko.hue-bindings.js

+ 1 - 1
desktop/core/src/desktop/static/desktop/js/ko.hue-bindings.js

@@ -1909,7 +1909,7 @@ ko.bindingHandlers.aceEditor = {
         };
 
         this.onClick = function (e) {
-          if (this.link && (e.altKey || e.metaKey)) {
+          if (this.link && (e.altKey || e.metaKey || e.ctrlKey)) {
             this.link.editor = this.editor;
             this._signal("open", this.link);
             this.clear()