This commit is contained in:
parent
e9a1c45d01
commit
fedbad35d6
|
@ -24,6 +24,15 @@ var bottomGroup = {
|
|||
$('.bottom-window-group .output').click(function () {
|
||||
$(this).focus();
|
||||
});
|
||||
|
||||
$('.bottom-window-group .output .path').click(function (e) {
|
||||
var path = $(e.target);
|
||||
console.log(path.data("path"));
|
||||
console.log(path.data("line"));
|
||||
console.log(path.data("column"));
|
||||
|
||||
// TODO: open editor
|
||||
});
|
||||
},
|
||||
_initFrame: function () {
|
||||
$(".bottom-window-group .output").mousedown(function (event) {
|
||||
|
|
Loading…
Reference in New Issue