From 6235354cc90f6bc0dce90b303f5f6789644ad469 Mon Sep 17 00:00:00 2001 From: Antonio Terceiro Date: Sat, 21 Jul 2012 17:09:50 -0300 Subject: [PATCH] Workaround for old firefox versions --- public/javascripts/article.js | 1 + 1 file changed, 1 insertion(+), 0 deletions(-) diff --git a/public/javascripts/article.js b/public/javascripts/article.js index d2fe4b6..46aae47 100644 --- a/public/javascripts/article.js +++ b/public/javascripts/article.js @@ -156,6 +156,7 @@ jQuery(function($) { }, success: function(text) { + text = text.replace('
', '').replace('
', ''); // old firefox var data = $.parseJSON(text); list_items(data, '#media-upload-results .items', true); if (data.length && data.length > 0) { -- libgit2 0.21.2