minor changes
This commit is contained in:
parent
4284fd65bf
commit
fa541b64a6
4 changed files with 13 additions and 7 deletions
|
|
@ -63,16 +63,21 @@
|
|||
.marker-layer {
|
||||
}
|
||||
|
||||
.marker-layer .selection {
|
||||
.marker-layer .step {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.marker-layer .bracket {
|
||||
.marker-layer .selection {
|
||||
position: absolute;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.marker-layer .bracket {
|
||||
position: absolute;
|
||||
z-index: 4;
|
||||
}
|
||||
|
||||
.marker-layer .active_line {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
|
|
|
|||
|
|
@ -89,6 +89,10 @@
|
|||
background: rgb(181, 213, 255);
|
||||
}
|
||||
|
||||
.ce .marker-layer .step {
|
||||
background: rgb(198, 219, 174);
|
||||
}
|
||||
|
||||
.marker-layer .bracket {
|
||||
margin: -1px 0 0 -1px;
|
||||
border: 1px solid rgb(192, 192, 192);
|
||||
|
|
|
|||
|
|
@ -48,11 +48,8 @@ function testChrome() {
|
|||
console.log("V8 version:", version.V8Version);
|
||||
});
|
||||
|
||||
v8debugger.scripts(4, null, false, function(scripts) {
|
||||
v8debugger.scripts(4, null, true, function(scripts) {
|
||||
console.log("scripts (short)", scripts);
|
||||
v8debugger.scripts(4, [scripts[0].id], true, function(scripts) {
|
||||
console.log("scripts (full)", scripts);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -141,7 +141,7 @@ ace.Editor = function(renderer, doc) {
|
|||
|
||||
var pos = self.doc.findMatchingBracket(self.getCursorPosition());
|
||||
if (pos) {
|
||||
range = new ace.Range(pos.row, pos.column, pos.row, pos.column+1);
|
||||
var range = new ace.Range(pos.row, pos.column, pos.row, pos.column+1);
|
||||
self.$bracketHighlight = self.renderer.addMarker(range, "bracket");
|
||||
}
|
||||
}, 10);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue