update YUI to 2.8.0r4
This commit is contained in:
parent
27f474ec64
commit
2d28e0c0ba
2007 changed files with 344487 additions and 210070 deletions
|
|
@ -1,6 +1,8 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<title>The Module Control</title>
|
||||
|
||||
|
|
@ -21,11 +23,27 @@ body {
|
|||
<script type="text/javascript" src="../../build/yahoo-dom-event/yahoo-dom-event.js"></script>
|
||||
<script type="text/javascript" src="../../build/container/container-min.js"></script>
|
||||
|
||||
<!--there is no custom header content for this example-->
|
||||
|
||||
<!--begin custom header content for this example-->
|
||||
<script type="text/javascript">
|
||||
document.documentElement.className = "yui-pe";
|
||||
</script>
|
||||
|
||||
<style type="text/css">
|
||||
.yui-module { border:1px dotted black;padding:5px;margin:10px; display:none; }
|
||||
.yui-module .hd { border:1px solid red;padding:5px; }
|
||||
.yui-module .bd { border:1px solid green;padding:5px; }
|
||||
.yui-module .ft { border:1px solid blue;padding:5px; }
|
||||
|
||||
.yui-pe .yui-pe-content {
|
||||
display:none;
|
||||
}
|
||||
</style>
|
||||
<!--end custom header content for this example-->
|
||||
|
||||
</head>
|
||||
|
||||
<body class=" yui-skin-sam">
|
||||
<body class="yui-skin-sam">
|
||||
|
||||
|
||||
<h1>The Module Control</h1>
|
||||
|
|
@ -38,19 +56,14 @@ body {
|
|||
|
||||
<!--BEGIN SOURCE CODE FOR EXAMPLE =============================== -->
|
||||
|
||||
<style type="text/css">
|
||||
.yui-module { border:1px dotted black;padding:5px;margin:10px; display:none; }
|
||||
.yui-module .hd { border:1px solid red;padding:5px; }
|
||||
.yui-module .bd { border:1px solid green;padding:5px; }
|
||||
.yui-module .ft { border:1px solid blue;padding:5px; }
|
||||
</style>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
YAHOO.namespace("example.container");
|
||||
|
||||
YAHOO.util.Event.onDOMReady(function () {
|
||||
|
||||
// Remove progressively enhanced content class, just before creating the module
|
||||
YAHOO.util.Dom.removeClass("module1", "yui-pe-content");
|
||||
|
||||
YAHOO.example.container.module1 = new YAHOO.widget.Module("module1", { visible: false });
|
||||
YAHOO.example.container.module1.render();
|
||||
|
||||
|
|
@ -65,9 +78,7 @@ body {
|
|||
|
||||
YAHOO.util.Event.addListener("show2", "click", YAHOO.example.container.module2.show, YAHOO.example.container.module2, true);
|
||||
YAHOO.util.Event.addListener("hide2", "click", YAHOO.example.container.module2.hide, YAHOO.example.container.module2, true);
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
<div>
|
||||
|
|
@ -75,7 +86,7 @@ body {
|
|||
<button id="hide1">Hide module1</button>
|
||||
</div>
|
||||
|
||||
<div id="module1">
|
||||
<div id="module1" class="yui-pe-content">
|
||||
<div class="hd">Module #1 from Markup</div>
|
||||
<div class="bd">This is a Module that was marked up in the document.</div>
|
||||
<div class="ft">End of Module #1</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue