diff options
author | Florian Schunk <florian.schunk@rwth-aachen.de> | 2018-12-20 14:34:26 +0100 |
---|---|---|
committer | Florian Schunk <florian.schunk@rwth-aachen.de> | 2019-01-09 11:28:51 +0100 |
commit | dba14fac8b394377107cfef3ce8f53c538aebcec (patch) | |
tree | 95c7433c2d69b3fdb3a24b6e54443b0102d3a9e0 /core/templates | |
parent | 74197462c0299a766b33289571dcbdc54b6eeabd (diff) | |
download | nextcloud-server-dba14fac8b394377107cfef3ce8f53c538aebcec.tar.gz nextcloud-server-dba14fac8b394377107cfef3ce8f53c538aebcec.zip |
add functionality to create new folder in file picker
Signed-off-by: Florian Schunk <florian.schunk@rwth-aachen.de>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/filepicker.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/core/templates/filepicker.html b/core/templates/filepicker.html index bcd901d8a9f..d764ff377d7 100644 --- a/core/templates/filepicker.html +++ b/core/templates/filepicker.html @@ -1,6 +1,15 @@ <div id="{dialog_name}" title="{title}"> <span class="dirtree breadcrumb"></span> - <span class="actions creatable"><a href="#" class="icon icon-add button"></a></span> + <span class="actions creatable"><a href="#" class="icon icon-add button button-add"></a> + <nav class="menu popovermenu bubble menu-center newFileMenu"> + <ul><li> + <form class="filenameform"> + <input type="text" value={newtext}> + <input class="icon-confirm" type="submit" value=""> + </form> + </li></ul> + </nav> + </span> <input type="checkbox" class="hidden-visually" id="picker-showgridview" checked="checked" /> <label id="picker-view-toggle" for="picker-showgridview" class="button icon-toggle-filelist"></label> <div class="filelist-container"> |