2013-04-23 07:47:57 -04:00
|
|
|
<script language="javascript" type="text/javascript">
|
2019-10-03 22:40:42 -04:00
|
|
|
$("#prvmail-text").editor_autocomplete(baseurl + '/search/acl');
|
2013-04-23 07:47:57 -04:00
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
function jotGetLink() {
|
|
|
|
reply = prompt("{{$linkurl}}");
|
|
|
|
if(reply && reply.length) {
|
|
|
|
$('#profile-rotator').show();
|
2021-02-16 10:20:51 -05:00
|
|
|
$.get('parseurl?url=' + reply, function(data) {
|
2017-01-26 22:50:27 -05:00
|
|
|
addeditortext(data);
|
2013-04-23 07:47:57 -04: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 10:20:51 -05:00
|
|
|
$.get('parseurl?url=' + reply, function(data) {
|
2017-01-26 22:50:27 -05:00
|
|
|
addeditortext(data);
|
2013-04-23 07:47:57 -04:00
|
|
|
$('#profile-rotator').hide();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|