[Lutinweb-commits] r49 - trunk/lutinrss/src/main/resources/fckeditor/editor/plugins/rssinclude
Author: tchemit Date: 2008-05-18 15:00:42 +0000 (Sun, 18 May 2008) New Revision: 49 Modified: trunk/lutinrss/src/main/resources/fckeditor/editor/plugins/rssinclude/fck_rssinclude.js Log: chargement asynchrone ne fonctionne pas sous firefox 2 Modified: trunk/lutinrss/src/main/resources/fckeditor/editor/plugins/rssinclude/fck_rssinclude.js =================================================================== --- trunk/lutinrss/src/main/resources/fckeditor/editor/plugins/rssinclude/fck_rssinclude.js 2008-05-18 11:54:29 UTC (rev 48) +++ trunk/lutinrss/src/main/resources/fckeditor/editor/plugins/rssinclude/fck_rssinclude.js 2008-05-18 15:00:42 UTC (rev 49) @@ -41,7 +41,7 @@ xhr = new window.ActiveXObject("Microsoft.XMLHTTP"); if (xhr) { - xhr.open("GET", FCKConfig.RssKnownFeedsURL, false); + xhr.open("GET", FCKConfig.RssKnownFeedsURL, true); xhr.onreadystatechange = function() { if(xhr.readyState == 4 && xhr.status == 200) /* 200 : code HTTP pour OK */ {
participants (1)
-
tchemit@users.labs.libre-entreprise.org