diff options
-rw-r--r-- | tests/visual/dialog.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/visual/dialog.html b/tests/visual/dialog.html index 12e7c2b43..1411d4dc9 100644 --- a/tests/visual/dialog.html +++ b/tests/visual/dialog.html @@ -11,7 +11,9 @@ <script type="text/javascript">
$(function() {
var offset = $("#dialog").offset();
- $("#dialog").click(function() { $("<div/>").dialog(); });
+ $("#dialog").click(function() {
+ $("<div/>").dialog();
+ });
});
</script>
</head>
|