mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
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",
|
||||
"default": 'auto'
|
||||
},
|
||||
height: {
|
||||
name: "height",
|
||||
type: "string",
|
||||
description: "Define width of dialog, the default is auto",
|
||||
"default": 'auto'
|
||||
},
|
||||
position: {
|
||||
name: "position",
|
||||
type: "string",
|
||||
@ -484,7 +490,7 @@ var et2_dialog = (function(){ "use strict"; return et2_widget.extend(
|
||||
minWidth: this.options.minWidth,
|
||||
minHeight:this.options.minHeight,
|
||||
maxWidth: 640,
|
||||
height: 'auto',
|
||||
height: this.options.height,
|
||||
title: this.options.title,
|
||||
open: function() {
|
||||
// Focus default button so enter works
|
||||
|
Loading…
Reference in New Issue
Block a user