updating example list with new jugl style and giving jugl a license

git-svn-id: http://svn.openlayers.org/trunk/openlayers@7119 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2008-05-08 22:10:49 +00:00
parent 4b99350be1
commit 9cf5153163
2 changed files with 37 additions and 28 deletions

View File

@@ -67,9 +67,12 @@
var template, target;
function listExamples(examples) {
var node = template.process({examples: examples}, true);
target.innerHTML = "";
target.appendChild(node);
var node = template.process({
context: {examples: examples},
clone: true,
parent: target
});
document.getElementById("count").innerHTML = "(" + examples.length + ")";
}