diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-05-17 19:48:18 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-05-17 19:48:18 +0200 |
commit | a93f9a7aab0ddcc00415f5b4e0c6876751a4d4c1 (patch) | |
tree | 234e63220117c2608203b44b4926ac9d481ea02a /lib | |
parent | b1a864fe66dcf7f538e4d304cc01ea9ec736b786 (diff) | |
download | rpg-a93f9a7aab0ddcc00415f5b4e0c6876751a4d4c1.tar.gz rpg-a93f9a7aab0ddcc00415f5b4e0c6876751a4d4c1.tar.bz2 |
allow resizing the dialog
Diffstat (limited to 'lib')
-rw-r--r-- | lib/plugins/styler/script.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/plugins/styler/script.js b/lib/plugins/styler/script.js index 1c53987a4..79df8a88b 100644 --- a/lib/plugins/styler/script.js +++ b/lib/plugins/styler/script.js @@ -16,7 +16,7 @@ jQuery(function () { DOKU_BASE + '/lib/exe/ajax.php', { 'call': 'plugin_styler', - 'id': JSINFO.id + 'id': JSINFO.id }, function () { // load the preview template @@ -28,8 +28,8 @@ jQuery(function () { var $dlg = $dialog.dialog({ 'title': LANG.plugins.styler.menu, 'width': 500, + 'height': 500, 'top': 50, - 'maxHeight': 500, 'position': { 'my': 'left bottom', 'at': 'left bottom', 'of': window }, // bring everything back to normal 'close': function (event, ui) { |