From fb65d7ee498977ba089ab7aad45322e47b7bb335 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sun, 13 Jul 2014 22:42:33 +0200 Subject: Bug compatibility prefix title https://github.com/marienfressinaud/FreshRSS/issues/536 The previous syntax worked only in Firefox https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/default_parameters --- p/scripts/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'p/scripts') diff --git a/p/scripts/main.js b/p/scripts/main.js index e1e6d49ce..4f7494cd1 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -55,7 +55,7 @@ function numberFormat(nStr) { return x1 + x2; } -function incLabel(p, inc, spaceAfter = false) { +function incLabel(p, inc, spaceAfter) { var i = str2int(p) + inc; return i > 0 ? ((spaceAfter ? '' : ' ') + '(' + numberFormat(i) + ')' + (spaceAfter ? ' ' : '')) @@ -193,7 +193,7 @@ function mark_favorite(active) { var favourites = $('.favorites>a').contents().last().get(0); if (favourites && favourites.textContent) { favourites.textContent = favourites.textContent.replace(/((?: \([ 0-9]+\))?\s*)$/, function (m, p1) { - return incLabel(p1, inc); + return incLabel(p1, inc, false); }); } -- cgit v1.2.3