Sha256: bcc2a08892b0268da27478980900f22441dc49224aec099cf76abfb402b51b29
Contents?: true
Size: 1011 Bytes
Versions: 8
Compression:
Stored size: 1011 Bytes
Contents
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Resizable Visual Test : Resizable option aspectRatio 1.0 maxWidth 50</title> <link rel="stylesheet" href="../visual.css" type="text/css" /> <link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css" /> <script type="text/javascript" src="../../../jquery-1.5.1.js"></script> <script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script> <script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script> <script type="text/javascript" src="../../../ui/jquery.ui.mouse.js"></script> <script type="text/javascript" src="../../../ui/jquery.ui.resizable.js"></script> <script type="text/javascript"> $(function() { $("#resizable").resizable({ aspectRatio: 'preserve', minWidth: 50 }); }); </script> <style type="text/css"> #resizable { width: 100px; height: 100px; background: silver; } </style> </head> <body> <div id="resizable">Resizable</div> </body> </html>
Version data entries
8 entries across 7 versions & 1 rubygems