2013-04-23 13:47:57 +02:00
|
|
|
<script language="javascript" type="text/javascript">
|
2019-10-04 04:40:42 +02:00
|
|
|
$("#prvmail-text").editor_autocomplete(baseurl + '/search/acl');
|
2013-04-23 13:47:57 +02:00
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
function jotGetLink() {
|
|
|
|
reply = prompt("{{$linkurl}}");
|
|
|
|
if(reply && reply.length) {
|
|
|
|
$('#profile-rotator').show();
|
2021-02-16 16:20:51 +01:00
|
|
|
$.get('parseurl?url=' + reply, function(data) {
|
2017-01-27 04:50:27 +01:00
|
|
|
addeditortext(data);
|
2013-04-23 13:47:57 +02:00
|
|
|
$('#profile-rotator').hide();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function linkdropper(event) {
|
|
|
|
var linkFound = event.dataTransfer.types.contains("text/uri-list");
|
|
|
|
if(linkFound)
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
|
|
|
|
function linkdrop(event) {
|
|
|
|
var reply = event.dataTransfer.getData("text/uri-list");
|
|
|
|
event.target.textContent = reply;
|
|
|
|
event.preventDefault();
|
|
|
|
if(reply && reply.length) {
|
|
|
|
$('#profile-rotator').show();
|
2021-02-16 16:20:51 +01:00
|
|
|
$.get('parseurl?url=' + reply, function(data) {
|
2017-01-27 04:50:27 +01:00
|
|
|
addeditortext(data);
|
2013-04-23 13:47:57 +02:00
|
|
|
$('#profile-rotator').hide();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|