Initial release for Roundcube 1.3.

Fixed compatibility with new jQuery (combobox not displayed). Closes #20.
Pumped up Roundcube version requirement.
This commit is contained in:
Boris Gulay
2018-03-17 17:04:27 +03:00
parent c90efaa00b
commit 707abf2a81
3 changed files with 4 additions and 4 deletions

View File

@@ -4,9 +4,9 @@
$(function() {
var $truName = $('.topright .username');
if ($truName.size() > 0) {
if ($truName.length > 0) {
$sw = $('#plugin-ident_switch-account');
if ($sw.size() > 0) {
if ($sw.length > 0) {
$sw.prependTo('.topright');
$truName.hide();
$('#plugin-ident_switch-account').show();