Skip to content
Snippets Groups Projects
Commit eca2e073 authored by Michael Gapczynski's avatar Michael Gapczynski
Browse files

Don't reload the page after sending private link to email address

parent 7ceba614
No related branches found
No related tags found
No related merge requests found
......@@ -360,7 +360,8 @@ $(document).ready(function() {
$(this).select();
});
$('#emailPrivateLink').live('submit', function() {
$('#emailPrivateLink').live('submit', function(event) {
event.preventDefault();
OC.Share.emailPrivateLink();
});
});
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment