Skip to content

Commit

Permalink
19.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Rostovtsev committed May 12, 2018
1 parent 7a929c0 commit d7fe36a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
## Changelog

#### Version 19.20-beta1 (May 12, 2018)
#### Version 19.17 (May 12, 2018)
* Add new tree-view for mail folders [#431](https://github.com/qooob/authentic-theme/issues/431)
* Add Swedish and Albanian language translation updates
* Fix help tooltip to be used inside of any container [#1134](https://github.com/qooob/authentic-theme/issues/1134)

* Fix File-Manager minor bugs [#1137](https://github.com/qooob/authentic-theme/issues/1137) [#1138](https://github.com/qooob/authentic-theme/issues/1138)

#### Version 19.16 (May 2, 2018)
* Fix to perfect progressive output processor [sourceforge.net/5112](https://sourceforge.net/p/webadmin/bugs/5112)
Expand Down
2 changes: 1 addition & 1 deletion extensions/mail/mail.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion extensions/mail/mail.src.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ const mail = (function() {
!expanded && node.toggleExpanded();
},
reload: function(data) {
$(this.container).fancytree("getTree").reload(data);
let tree = $(this.container).fancytree("getTree");
tree.$container.empty();
tree.reload(data);
setTimeout(() => {
this.adjust();
this.expand(this.get_active_node());
Expand Down
4 changes: 2 additions & 2 deletions theme.info
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
desc=Authentic Theme
longdesc=Webmin/Usermin/Virtualmin/Cloudmin theme based on Bootstrap and Font Awesome (https://github.com/qooob/authentic-theme)
version=19.16
mversion=2
version=19.17
mversion=1
depends=1.880 1.740
webmin=1
usermin=1

0 comments on commit d7fe36a

Please sign in to comment.