var $ = require('ep_etherpad-lite/static/js/rjquery').$; // use jQuery exports.postAceInit = function (hook_name, args, cb){ // add email invite to then embed div $("#embedcode").append( ''+ '

'+ 'Invite someone to this pad:'+ '

'+ '
'+ ' Your name:

'+ ' The email address of the person you want to invite:


'+ ' '+ '
' ); $('.sendEmailButton').click(function(){ var padurl = $("#linkinput").val(); var name = $('#youremailnameinput').val(); var email = $('#emailrcptinput').val(); var data = "name="+name+"&email="+email+"&padurl="+padurl; url = "/server_invite_via_email"; $.ajax({ type: "GET", url: url, data: data, }).done( function(msg){ } ); alert("Invitation sent..."); $('#embed').fadeOut(); }); }