combo_template.html revision dd5e6c0fb2c0b7982b165d58d06c336362a59e92
<!doctype html>
<html>
<head>
<title>Combo Test for {KEY}</title>
</head>
<body>
<h1>Combo Test for {KEY}</h1>
<script src="/build/yui/yui.js"></script>
<script>
try {
YUI({ useBrowserConsole: false, combine: true }).use('{KEY_USE}', function(Y) {
parent.window._yui_result({
name: '{KEY}',
result: Y.Env._missed,
err: null
});
});
} catch (e) {
parent.window._yui_result({
name: '{KEY}',
result: ['{KEY}'],
err: e
});
}
</script>
</body>
</html>