mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
23 lines
778 B
HTML
23 lines
778 B
HTML
|
<HTML>
|
||
|
<HEAD>
|
||
|
<TITLE>Layout Example</TITLE>
|
||
|
<SCRIPT type="text/javascript" src="jquery.js"></SCRIPT>
|
||
|
<SCRIPT type="text/javascript" src="jquery.layout.js"></SCRIPT>
|
||
|
<SCRIPT type="text/javascript">
|
||
|
$(document).ready(function () {
|
||
|
$('body').layout({ applyDefaultStyles: true });
|
||
|
});
|
||
|
</SCRIPT>
|
||
|
</HEAD>
|
||
|
<BODY>
|
||
|
<DIV class="ui-layout-center">Center
|
||
|
<P><A href="http://layout.jquery-dev.net/demos.html">Go to the Demos page</A></P>
|
||
|
<P>* Pane-resizing is disabled because ui.draggable.js is not linked</P>
|
||
|
<P>* Pane-animation is disabled because ui.effects.js is not linked</P>
|
||
|
</DIV>
|
||
|
<DIV class="ui-layout-north">North</DIV>
|
||
|
<DIV class="ui-layout-south">South</DIV>
|
||
|
<DIV class="ui-layout-east">East</DIV>
|
||
|
<DIV class="ui-layout-west">West</DIV>
|
||
|
</BODY>
|
||
|
</HTML>
|