diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-10-18 11:42:13 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2016-10-19 14:18:21 +0200 |
commit | cee7bfef1620287da8e7302d0f4839c33b60cafc (patch) | |
tree | 0469d3b7bedf0a9b3e6f4a8ab3a1e9f37c265ccc /core/js | |
parent | 14f78369d7bc6dcc5e0234aac27e596ed7e92953 (diff) | |
download | nextcloud-server-cee7bfef1620287da8e7302d0f4839c33b60cafc.tar.gz nextcloud-server-cee7bfef1620287da8e7302d0f4839c33b60cafc.zip |
filepicker: improve layout and style
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/jquery.ocdialog.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/jquery.ocdialog.js b/core/js/jquery.ocdialog.js index 15b58f9e086..e26555bd63c 100644 --- a/core/js/jquery.ocdialog.js +++ b/core/js/jquery.ocdialog.js @@ -101,9 +101,9 @@ if(this.$title) { this.$title.text(value); } else { - var $title = $('<h3 class="oc-dialog-title">' + var $title = $('<h2 class="oc-dialog-title">' + value - + '</h3>'); + + '</h2>'); this.$title = $title.prependTo(this.$dialog); } this._setSizes(); |