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>
|
2021-05-19 23:47:15 +02:00
|
|
|
<script type="text/javascript" src="view/js/ajaxupload.js?v={{$smarty.const.FRIENDICA_VERSION}}"></script>
|
2013-04-23 13:47:57 +02:00
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
var uploader = new window.AjaxUpload(
|
|
|
|
'prvmail-upload',
|
|
|
|
{ action: 'wall_upload/{{$nickname}}',
|
|
|
|
name: 'userfile',
|
|
|
|
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
|
|
|
|
onComplete: function(file,response) {
|
2017-01-27 04:50:27 +01:00
|
|
|
addeditortext(response);
|
2013-04-23 13:47:57 +02:00
|
|
|
$('#profile-rotator').hide();
|
2017-01-27 04:50:27 +01:00
|
|
|
}
|
2013-04-23 13:47:57 +02:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2016-04-14 23:59:29 +02:00
|
|
|
$("#prvmail-text").bbco_autocomplete('bbcode');
|
2013-04-23 13:47:57 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-04 22:10:09 +02:00
|
|
|
function addeditortext(data) {
|
|
|
|
var currentText = $("#prvmail-text").val();
|
|
|
|
$("#prvmail-text").val(currentText + data);
|
|
|
|
}
|
|
|
|
|
2013-04-23 13:47:57 +02:00
|
|
|
</script>
|
|
|
|
|