Sha256: 22a84598de0d1ce51a07e072ae41873bed4acafa42d4dc88134aa9d83ad560bb
Contents?: true
Size: 975 Bytes
Versions: 8
Compression:
Stored size: 975 Bytes
Contents
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Resizable Visual Test : Resizable option aspectRatio 0.5</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: 0.5 }); }); </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