diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-14 16:12:27 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-14 16:12:31 +0200 |
commit | 7bb261f81014b3f0abb2677f22289e6906ced749 (patch) | |
tree | 5f310d1adb00c9d778ca60422c976c301e7cd992 /settings/js/personal.js | |
parent | df532e3f823375e059defff4e5e3fee2af6c8054 (diff) | |
download | nextcloud-server-7bb261f81014b3f0abb2677f22289e6906ced749.tar.gz nextcloud-server-7bb261f81014b3f0abb2677f22289e6906ced749.zip |
more fixes for Personal and Tipsy
Diffstat (limited to 'settings/js/personal.js')
-rw-r--r-- | settings/js/personal.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/settings/js/personal.js b/settings/js/personal.js index f6b7eeb7584..d16917d5393 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -32,4 +32,12 @@ $(document).ready(function(){ }); return false; }); + + // reset value when edited, workaround because of .select() not working with disabled inputs + $('#webdav').focus(function(event){ + openidValue = $('#webdav').val(); + }); + $('#webdav').blur(function(event){ + $('#webdav').val(openidValue); + }); } ); |