corrade-http-templates – Blame information for rev 62

Subversion Repositories:
Rev:
Rev Author Line No. Line
62 office 1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <title>jQuery UI Resizable - Helper</title>
7 <link rel="stylesheet" href="../../themes/base/all.css">
8 <link rel="stylesheet" href="../demos.css">
9 <style>
10 #resizable { width: 150px; height: 150px; padding: 0.5em; }
11 #resizable h3 { text-align: center; margin: 0; }
12 .ui-resizable-helper { border: 2px dotted #00F; }
13 </style>
14 <script src="../../external/requirejs/require.js"></script>
15 <script src="../bootstrap.js">
16 $( "#resizable" ).resizable({
17 helper: "ui-resizable-helper"
18 });
19 </script>
20 </head>
21 <body>
22  
23 <div id="resizable" class="ui-widget-content">
24 <h3 class="ui-widget-header">Helper</h3>
25 </div>
26  
27 <div class="demo-description">
28 <p>Display only an outline of the element while resizing by setting the <code>helper</code> option to a CSS class.</p>
29 </div>
30 </body>
31 </html>