Upgrade to Bootstrap 3

This commit is contained in:
benweet 2013-09-03 23:00:20 +01:00
parent 7e1769ced0
commit 95671d4f08
3 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,5 @@
CACHE MANIFEST
#Date Tue Sep 03 2013 22:51:17
#Date Tue Sep 03 2013 23:00:17
CACHE:
index.html

View File

@ -4547,7 +4547,9 @@ define("config", function() {}), define("settings", [ "underscore", "config" ],
y[t] = e;
}); else try {
r.appendChild(s);
} catch (l) {}
} catch (l) {
r.appendChild(document.createTextNode(s.textContent));
}
i.shift();
}
o.appendChild(r);

View File

@ -142,7 +142,8 @@ define([
sectionElt.appendChild(elt);
}
catch(e) {
// IE fails with some text nodes
// IE fails with text nodes
sectionElt.appendChild(document.createTextNode(elt.textContent));
}
}
markdownEltList.shift();