aboutsummaryrefslogtreecommitdiffstats
path: root/bufferecho.js
diff options
context:
space:
mode:
authoranekos2009-11-02 10:00:42 +0000
committeranekos2009-11-02 10:00:42 +0000
commitdb24ae5afa00146ae709a44a28a65adf400f1aa8 (patch)
treec25a045a9a5cbd333c25ac5fdc7b7ae15c0968e2 /bufferecho.js
parentb059bd7607fb1c13133b69fd42a9f1f8456ef4c0 (diff)
downloadvimperator-plugins-db24ae5afa00146ae709a44a28a65adf400f1aa8.tar.bz2
Follow HEAD (2.3pre)
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@35833 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'bufferecho.js')
-rw-r--r--bufferecho.js2
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) {