Sha256: a84728d711c6c3874a47c5130b71b475d36ec663f4e65afead9a86c6c2a7c017

Contents?: true

Size: 806 Bytes

Versions: 1

Compression:

Stored size: 806 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
    <title>Dialog</title>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/jquery-ui.min.js"></script>
    <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/themes/base/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.3 features/support/public/dialog.html