Browse Source

debugger: Only display basename of scripts

v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
72589b60ad
  1. 2
      lib/_debugger.js

2
lib/_debugger.js

@ -853,7 +853,7 @@ Interface.prototype.printScripts = function(displayNatives) {
script.name == client.currentScript ||
!script.isNative) {
text += script.name == client.currentScript ? '* ' : ' ';
text += script.name + '\n';
text += require('path').basename(script.name) + '\n';
}
}
}

Loading…
Cancel
Save