This commit is contained in:
parent
e9a1c45d01
commit
fedbad35d6
|
@ -12,7 +12,7 @@
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var bottomGroup = {
|
var bottomGroup = {
|
||||||
tabs: undefined,
|
tabs: undefined,
|
||||||
|
@ -20,9 +20,18 @@ var bottomGroup = {
|
||||||
init: function () {
|
init: function () {
|
||||||
this._initTabs();
|
this._initTabs();
|
||||||
this._initFrame();
|
this._initFrame();
|
||||||
|
|
||||||
$('.bottom-window-group .output').click(function () {
|
$('.bottom-window-group .output').click(function () {
|
||||||
$(this).focus();
|
$(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 () {
|
_initFrame: function () {
|
||||||
|
|
Loading…
Reference in New Issue