aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/share.js
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-10-23 18:51:25 +0200
committerVincent Petry <pvince81@owncloud.com>2013-10-23 18:51:25 +0200
commit086b82bd69e1c2194db78765329922eac042fb93 (patch)
treef099d357b733beee37d3bf81e22d51affa3a1b88 /core/js/share.js
parent9aa164f3813dca15269e6a081fc9965890acc3d8 (diff)
downloadnextcloud-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.js3
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) {