diff options
author | Ca-Phun Ung <pazu2k@gmail.com> | 2008-12-29 19:17:34 +0000 |
---|---|---|
committer | Ca-Phun Ung <pazu2k@gmail.com> | 2008-12-29 19:17:34 +0000 |
commit | 7012495261ee468ed85a8a16086022ecd69e8514 (patch) | |
tree | 233e204da146601821661ca654c67c4599adbc26 /demos/index.html | |
parent | 57ae44eecae0671607f4b92363e6e8761c9fda30 (diff) | |
download | jquery-ui-7012495261ee468ed85a8a16086022ecd69e8514.tar.gz jquery-ui-7012495261ee468ed85a8a16086022ecd69e8514.zip |
demos/index.html added php integration code. for speed i'm using an iframe with fixed width/height for now. [needs refactoring]
Diffstat (limited to 'demos/index.html')
-rw-r--r-- | demos/index.html | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/demos/index.html b/demos/index.html index 44885467f..9b8c5b48c 100644 --- a/demos/index.html +++ b/demos/index.html @@ -17,9 +17,25 @@ <script type="text/javascript" src="../ui/ui.slider.js"></script>
<script type="text/javascript" src="../ui/ui.sortable.js"></script>
<script type="text/javascript" src="../ui/ui.tabs.js"></script>
+
</head>
<body>
+<?php } else {
+ $base = 'repository/trunk/demos/';
+ $section = $base . $_GET['load'];
+
+ ?>
+ <script type="text/javascript">
+ <?php printf ('var section = "%s";', $section); ?>
+ jQuery(function($){
+ $('dl.nav a').each(function(){
+ this.setAttribute('href', '/' + section + '/' + this.getAttribute('href'));
+ $(this).attr('target', 'preview');
+ });
+ });
+ </script>
<?php } ?>
+
<table cellspacing="0" cellpadding="0" class="layout-grid" id="functional">
<tr>
<td class="left-nav">
@@ -67,16 +83,13 @@ <td class="normal">
<div class="normal">
- <?php
- if(isset($_GET['load'])) {
-
- //Preload the demo page here
- echo $_GET['load'];
-
- } else {
+ <?php if(isset($plain) && isset($_GET['load'])) {
+ echo html_entity_decode('<h1>'. $_GET['load'] .'</h1>');
+ include($section .'/index.html');
+ echo html_entity_decode('<iframe id="preview" name="preview" src="/'. $section .'/default.html" width="500" height="300" border="0" frameborder="0" style="overflow:auto"></iframe>');
+ } else { ?>
- ?>
<h3>Instructions</h3>
<p>
The functional demos are provided to give users an idea of how jQuery UI works. You only need to copy and paste code from the demos. Have fun playing with it.
|