diff options
author | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-12-23 17:08:26 +0000 |
---|---|---|
committer | Paul Bakaus <paul.bakaus@googlemail.com> | 2008-12-23 17:08:26 +0000 |
commit | af317289a6bc06f5eea268dd1a92e34e21e2e152 (patch) | |
tree | bbf40959b8df1aeca8443e2cbc3dfaac97bb2802 /demos | |
parent | cca491dc4fd8dd207c85d9ec40b6560183e01496 (diff) | |
download | jquery-ui-af317289a6bc06f5eea268dd1a92e34e21e2e152.tar.gz jquery-ui-af317289a6bc06f5eea268dd1a92e34e21e2e152.zip |
demos: overview file headers are not included if $plain is set in php
Diffstat (limited to 'demos')
-rw-r--r-- | demos/index.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/demos/index.html b/demos/index.html index 14ebc67eb..031aef1c8 100644 --- a/demos/index.html +++ b/demos/index.html @@ -1,3 +1,4 @@ +<?php if(!isset($plain)) { ?>
<!doctype html>
<html lang="en">
<head>
@@ -25,6 +26,7 @@ </script>
</head>
<body>
+<?php } ?>
<table cellspacing="0" cellpadding="0" class="layout-grid" id="functional">
<tr>
<td class="left-nav">
@@ -81,6 +83,7 @@ </td>
</tr>
</table>
-
+<?php if(!isset($plain)) { ?>
</body>
</html>
+<?php } ?>
|