display file and line as 'file:line'
This commit is contained in:
parent
801bfeb8dd
commit
1e1bd9689b
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ Ox.DocPage = function(options, self) {
|
||||||
.css({marginLeft: 16 + 'px'})
|
.css({marginLeft: 16 + 'px'})
|
||||||
.html(
|
.html(
|
||||||
'<code><b>' + self.options.item.file.replace(Ox.PATH, '')
|
'<code><b>' + self.options.item.file.replace(Ox.PATH, '')
|
||||||
+ '</b> line ' + self.options.item.line + '</code>'
|
+ '</b>:' + self.options.item.line + '</code>'
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$elements.push(
|
$elements.push(
|
||||||
|
|
Loading…
Reference in a new issue