summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-10-07 13:15:25 +0200
committerVincent Petry <pvince81@owncloud.com>2013-10-07 13:15:25 +0200
commit68fbd7b92241daf1326c9a95331d4fdb5ca030e6 (patch)
treec498747340b539e722395410599427d35698317f
parent27579f36f672181f0927e4f8bb1c4fd04345c28b (diff)
downloadnextcloud-server-68fbd7b92241daf1326c9a95331d4fdb5ca030e6.tar.gz
nextcloud-server-68fbd7b92241daf1326c9a95331d4fdb5ca030e6.zip
Fixed label for sharing notification to be clickable
Fixed the sharing notification checkbox label in the file sharing dropdown, which makes it possible to click on the label directly.
-rw-r--r--core/js/share.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/share.js b/core/js/share.js
index bbdc5a67e9d..c0ecbbf36cf 100644
--- a/core/js/share.js
+++ b/core/js/share.js
@@ -350,7 +350,7 @@ OC.Share={
if (mailSend === '1') {
checked = 'checked';
}
- html += '<input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify user by email')+'</label>';
+ html += '<label><input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify user by email')+'</label>';
}
if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) {
if (editChecked == '') {