aboutsummaryrefslogtreecommitdiffstats
path: root/twittperator.js
diff options
context:
space:
mode:
author2GMon2015-03-26 01:38:02 +0900
committer2GMon2015-03-26 01:38:02 +0900
commit04d2baf8d69354ce8e3051e9139fc879851f95df (patch)
tree5180da80cf1683825ac61b7067ebc1137c43bf64 /twittperator.js
parentc9da5d5fbd76de2060601b7cc43afc9fc912a426 (diff)
downloadvimperator-plugins-04d2baf8d69354ce8e3051e9139fc879851f95df.tar.bz2
replace TemplateXML with template.maybeXML
Diffstat (limited to 'twittperator.js')
-rw-r--r--twittperator.js4
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,