Don't reload the page after sending private link to email address
This commit is contained in:
parent
7ceba61413
commit
eca2e073f8
|
@ -360,7 +360,8 @@ $(document).ready(function() {
|
|||
$(this).select();
|
||||
});
|
||||
|
||||
$('#emailPrivateLink').live('submit', function() {
|
||||
$('#emailPrivateLink').live('submit', function(event) {
|
||||
event.preventDefault();
|
||||
OC.Share.emailPrivateLink();
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue