aboutsummaryrefslogtreecommitdiffstats
path: root/demos/dialog
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2013-02-01 08:59:55 -0500
committerScott González <scott.gonzalez@gmail.com>2013-02-01 08:59:55 -0500
commit7bbda71a32cc4953715ed34eab2ab48c5e736154 (patch)
treeb2739ba5c4712fb87ec4bc75fdd68c2f7cf23736 /demos/dialog
parent62cda1f95d0e7040153f0b5fe5745d199a0a094e (diff)
downloadjquery-ui-7bbda71a32cc4953715ed34eab2ab48c5e736154.tar.gz
jquery-ui-7bbda71a32cc4953715ed34eab2ab48c5e736154.zip
Dialog: Check for empty array in addition to empty object when checking if there are buttons. Fixes #9043 - Dialog: Buttonpane shown with no buttons when modifying native prototypes.
Diffstat (limited to 'demos/dialog')
-rw-r--r--demos/dialog/default.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/demos/dialog/default.html b/demos/dialog/default.html
index e781e18f8..98f248b81 100644
--- a/demos/dialog/default.html
+++ b/demos/dialog/default.html
@@ -16,6 +16,7 @@
<link rel="stylesheet" href="../demos.css">
<script>
$(function() {
+ Array.prototype.test = $.noop;
$( "#dialog" ).dialog();
});
</script>