diff options
author | 2GMon | 2015-03-26 01:38:02 +0900 |
---|---|---|
committer | 2GMon | 2015-03-26 01:38:02 +0900 |
commit | 04d2baf8d69354ce8e3051e9139fc879851f95df (patch) | |
tree | 5180da80cf1683825ac61b7067ebc1137c43bf64 | |
parent | c9da5d5fbd76de2060601b7cc43afc9fc912a426 (diff) | |
download | vimperator-plugins-04d2baf8d69354ce8e3051e9139fc879851f95df.tar.bz2 |
replace TemplateXML with template.maybeXML
-rw-r--r-- | twittperator.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/twittperator.js b/twittperator.js index 215750f..8438d11 100644 --- a/twittperator.js +++ b/twittperator.js @@ -2043,7 +2043,7 @@ let INFO = xml` '</table>'; window.Services.console.logStringMessage(html); - liberator.echo(new TemplateXML(html), true); + liberator.echo(new template.maybeXML(html), true); }, // }}} showTwitterMentions: function(arg) { // {{{ tw.jsonGet("statuses/mentions_timeline", null, function(res) { @@ -2355,7 +2355,7 @@ let INFO = xml` return; let id = m[0]; history.filter(function(st) st.id === id).map(dtdd).forEach(function(v) { - liberator.echo(new TemplateXML(v)); + liberator.echo(new template.maybeXML(v)); }); }, timelineCompleter: true, |