From feb5a9da3fd9a50106a5fb5df76b6cd48bbb238a Mon Sep 17 00:00:00 2001 From: Kohei Suzuki Date: Wed, 14 Jan 2015 20:31:44 +0900 Subject: String.prototype.quote() has been removed in Firefox 37 https://github.com/vimperator/vimperator-labs/pull/113 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/quote --- google-plus-commando.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'google-plus-commando.js') diff --git a/google-plus-commando.js b/google-plus-commando.js index 1b0440d..31c38f5 100644 --- a/google-plus-commando.js +++ b/google-plus-commando.js @@ -655,14 +655,14 @@ let g:gplus_commando_map_menu = "m" txt = "
\n"; break; case "img": - txt = ""; + txt = ""; break; case "p": txt = nodelist2txt(children, "p", "").join("") + "
\n"; break; case "a": if (aNode.hasAttribute("href") && aNode.href.indexOf("http") == 0) { - txt = "" + + txt = "" + nodelist2txt(children, "a", "").join("") + ""; break; -- cgit v1.2.3