- implemented themeroller overlay, removes option overlay (now handled through CSS) (implements #3681)
- implemented shadow option (boolean), if set to true, adds shadow from css framework (implements #3681)
This commit is contained in:
Paul Bakaus
2009-01-27 16:53:46 +00:00
parent 9dbeb228f6
commit 2ef2b87ccb
4 changed files with 37 additions and 18 deletions

View File

@@ -21,10 +21,6 @@
bgiframe: true,
height: 300,
modal: true,
overlay: {
backgroundColor: '#000',
opacity: 0.5
},
buttons: {
'Create user account': function() {
$(this).dialog('close');

View File

@@ -15,10 +15,6 @@
$("#dialog").dialog({
bgiframe: true,
modal: true,
overlay: {
backgroundColor: '#000',
opacity: 0.5
},
buttons: {
Ok: function() {
$(this).dialog('close');

View File

@@ -15,11 +15,7 @@
$("#dialog").dialog({
bgiframe: true,
height: 140,
modal: true,
overlay: {
backgroundColor: '#000',
opacity: 0.5
}
modal: true
});
});
</script>