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 '9958256b202e5ad5554bf91d4d77655662b31d5b' into eclair-plus-aosp

* commit '9958256b202e5ad5554bf91d4d77655662b31d5b':
  docs only.
This commit is contained in:
Scott Main 2009-09-17 12:36:03 -07:00 committed by Android Git Automerger
commit b66f9b3e36
1 changed files with 1 additions and 1 deletions

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) {