diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-23 18:51:25 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-23 18:51:25 +0200 |
commit | 086b82bd69e1c2194db78765329922eac042fb93 (patch) | |
tree | f099d357b733beee37d3bf81e22d51affa3a1b88 /core/js/share.js | |
parent | 9aa164f3813dca15269e6a081fc9965890acc3d8 (diff) | |
download | nextcloud-server-086b82bd69e1c2194db78765329922eac042fb93.tar.gz nextcloud-server-086b82bd69e1c2194db78765329922eac042fb93.zip |
Fixed sharing dropdown placeholders in IE8/9
Added jquery.placeholder shim to handle input field placeholders in IE8/9
Diffstat (limited to 'core/js/share.js')
-rw-r--r-- | core/js/share.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/js/share.js b/core/js/share.js index 281cccaaef8..da0eee6a476 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -310,6 +310,9 @@ OC.Share={ $('#dropdown').show('blind', function() { OC.Share.droppedDown = true; }); + if ($('html').hasClass('lte9')){ + $('#dropdown input[placeholder]').placeholder(); + } $('#shareWith').focus(); }, hideDropDown:function(callback) { |