diff options
Diffstat (limited to 'bufferecho.js')
-rw-r--r-- | bufferecho.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bufferecho.js b/bufferecho.js index 641053f..10f48e9 100644 --- a/bufferecho.js +++ b/bufferecho.js @@ -28,7 +28,7 @@ commands.addUserCommand(['bufferecho','becho'],'Display results of JavaScript to ); var manager = { append: function(htmlString){ - var body = buffer.evaluateXPath('/html/body').snapshotItem(0); + var body = util.evaluateXPath('/html/body').snapshotItem(0); body.innerHTML += htmlString; }, open: function(str, forceNewTab) { |