am b66f9b3e: am 9958256b: am 1da82386: docs only. use normal DOM mod instead of jquery to load the lists.js file because jquery was appending GET parameters that eliminated any caching of the file.

Merge commit 'b66f9b3e367c4f15eeab7a54cd8d5331f3787b1e'

* commit 'b66f9b3e367c4f15eeab7a54cd8d5331f3787b1e':
  docs only.
This commit is contained in:
Scott Main 2009-09-17 12:45:36 -07:00 committed by Android Git Automerger
commit a5a849aee7

View file

@ -50,7 +50,7 @@ addLoadEvent( function() {
var lists = document.createElement("script");
lists.setAttribute("type","text/javascript");
lists.setAttribute("src", toRoot+"reference/lists.js");
$("head").append($(lists));
document.getElementsByTagName("head")[0].appendChild(lists);
} );
function setToRoot(root) {