forked from extern/egroupware
Add height attribute
This commit is contained in:
parent
52436f7f97
commit
da0175a44c
@ -174,6 +174,12 @@ var et2_dialog = (function(){ "use strict"; return et2_widget.extend(
|
|||||||
description: "Define width of dialog, the default is auto",
|
description: "Define width of dialog, the default is auto",
|
||||||
"default": 'auto'
|
"default": 'auto'
|
||||||
},
|
},
|
||||||
|
height: {
|
||||||
|
name: "height",
|
||||||
|
type: "string",
|
||||||
|
description: "Define width of dialog, the default is auto",
|
||||||
|
"default": 'auto'
|
||||||
|
},
|
||||||
position: {
|
position: {
|
||||||
name: "position",
|
name: "position",
|
||||||
type: "string",
|
type: "string",
|
||||||
@ -484,7 +490,7 @@ var et2_dialog = (function(){ "use strict"; return et2_widget.extend(
|
|||||||
minWidth: this.options.minWidth,
|
minWidth: this.options.minWidth,
|
||||||
minHeight:this.options.minHeight,
|
minHeight:this.options.minHeight,
|
||||||
maxWidth: 640,
|
maxWidth: 640,
|
||||||
height: 'auto',
|
height: this.options.height,
|
||||||
title: this.options.title,
|
title: this.options.title,
|
||||||
open: function() {
|
open: function() {
|
||||||
// Focus default button so enter works
|
// Focus default button so enter works
|
||||||
|
Loading…
Reference in New Issue
Block a user