Hypolite Petovan
3859b7ba10
- Update oexchange module to use BBCode::embedURL instead of a self-request - Remove mod/parse_url.php file - Restrict ParseUrl module to authenticated users
38 lines
883 B
Smarty
38 lines
883 B
Smarty
<script language="javascript" type="text/javascript">
|
|
$("#prvmail-text").editor_autocomplete(baseurl + '/search/acl');
|
|
</script>
|
|
<script>
|
|
|
|
function jotGetLink() {
|
|
reply = prompt("{{$linkurl}}");
|
|
if(reply && reply.length) {
|
|
$('#profile-rotator').show();
|
|
$.get('parseurl?url=' + reply, function(data) {
|
|
addeditortext(data);
|
|
$('#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();
|
|
$.get('parseurl?url=' + reply, function(data) {
|
|
addeditortext(data);
|
|
$('#profile-rotator').hide();
|
|
});
|
|
}
|
|
}
|
|
|
|
</script>
|
|
|