Sha256: 006348ff65ba281024bf96c5d377331210b054391c802c31adadd5d65bba5586
Contents?: true
Size: 632 Bytes
Versions: 1
Compression:
Stored size: 632 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Dialog</title> <script src="jquery.js"></script> <script src="jquery-ui.js"></script> <link rel="stylesheet" href="jquery-ui.css"> <script> $(function() { $( "#dialog" ).dialog({ buttons: [{ text: "Ok", click: function() { $(this).dialog("close"); } }] }); }); </script> </head> <body> <div id="dialog" title="Basic dialog"> <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p> </div> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bermuda-0.0.4 | features/support/public/dialog.html |