Search and Top Navigation
#8623 closed bug (worksforme)
Opened October 05, 2012 06:08AM UTC
Closed October 05, 2012 03:08PM UTC
Dialog popup don't show in Safari
Reported by: | sNICkerssss | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.dialog | Version: | 1.8.20 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Dialog popup doesn't show in Safari if there is any js-object on page with property "class".
Reproduce:
<div id="fofo">text</div>
<script type="text/javascript">
$(document).ready(function(){
$('#fofo').dialog();
});
var myObject = {
class : 'object_class'
}
</script>
Attachments (0)
Change History (1)
Changed October 05, 2012 03:08PM UTC by comment:1
resolution: | → worksforme |
---|---|
status: | new → closed |
This works fine for me. Though, my guess would be that you're getting an error by not quoting class and that's causing everything to die.