]> CRI, Mines Paris - PSL - Plinn.git/blobdiff - skins/ajax_scripts/fragment_importer.js
Ajout des imports nécessaires au fonctionnement de la méthode search.
[Plinn.git] / skins / ajax_scripts / fragment_importer.js
index d9110cd6e98b17c7963671165a56be7914e2fc2e..52d7eb031bc51cbe72a215670261853746a70310 100644 (file)
@@ -90,9 +90,14 @@ FragmentImporter.prototype.populateBaseElement = function(req) {
                                        break;
                                case 'base' :
                                        var headBase = document.getElementsByTagName('base');
-                                       if (headBase.length) {
+                                       if (headBase.length > 0) {
                                                headBase[0].setAttribute('href', element.getAttribute('href'));
                                        }
+                                       else {
+                                               headBase = document.createElement('base');
+                                               headBase.setAttribute('href', element.getAttribute('href'));
+                                               document.head.appendChild(headBase);
+                                       }
                                        break;
                        }
                }