Added XHR for direct messages.
This commit is contained in:
parent
a2302e5b76
commit
f9bb95174b
|
@ -223,7 +223,22 @@ class NewmessageAction extends Action
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->msg = $msg;
|
$this->msg = $msg;
|
||||||
$this->showPage();
|
if ($this->trimmed('ajax')) {
|
||||||
|
$this->startHTML('text/xml;charset=UTF-8');
|
||||||
|
$this->elementStart('head');
|
||||||
|
$this->element('title', null, _('New message'));
|
||||||
|
$this->elementEnd('head');
|
||||||
|
$this->elementStart('body');
|
||||||
|
if (common_logged_in()) {
|
||||||
|
$this->showNoticeForm();
|
||||||
|
}
|
||||||
|
$this->elementEnd('div');
|
||||||
|
$this->elementEnd('body');
|
||||||
|
$this->endHTML();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$this->showPage();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function showPageNotice()
|
function showPageNotice()
|
||||||
|
|
28
js/util.js
28
js/util.js
|
@ -57,6 +57,8 @@ $(document).ready(function(){
|
||||||
SN.U.NoticeReply();
|
SN.U.NoticeReply();
|
||||||
|
|
||||||
SN.U.NoticeDataAttach();
|
SN.U.NoticeDataAttach();
|
||||||
|
|
||||||
|
SN.U.NewDirectMessage();
|
||||||
}
|
}
|
||||||
|
|
||||||
SN.U.NoticeAttachments();
|
SN.U.NoticeAttachments();
|
||||||
|
@ -350,6 +352,32 @@ var SN = { // StatusNet
|
||||||
NDA.val('');
|
NDA.val('');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
NewDirectMessage: function() {
|
||||||
|
NDM = $('.entity_send-a-message a');
|
||||||
|
NDM.attr({'href':NDM.attr('href')+'&ajax=1'});
|
||||||
|
NDM.click(function() {
|
||||||
|
var NDMF = $('.entity_send-a-message form');
|
||||||
|
if (NDMF.length == 0) {
|
||||||
|
$.get(NDM.attr('href'), null, function(data) {
|
||||||
|
$('.entity_send-a-message').append(document._importNode($('form', data).get(0), true));
|
||||||
|
$('.entity_send-a-message textarea').focus();
|
||||||
|
|
||||||
|
NDMF = $('.entity_send-a-message form');
|
||||||
|
NDMF.append('<button>×</button>');
|
||||||
|
$('.entity_send-a-message button').click(function(){
|
||||||
|
NDMF.hide();
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
NDMF.show();
|
||||||
|
$('.entity_send-a-message textarea').focus();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -670,6 +670,40 @@ border-radius:4px;
|
||||||
margin-bottom:18px;
|
margin-bottom:18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.entity_send-a-message button {
|
||||||
|
position:absolute;
|
||||||
|
top:0;
|
||||||
|
right:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.entity_send-a-message #form_notice {
|
||||||
|
position:absolute;
|
||||||
|
top:34px;
|
||||||
|
right:-1px;
|
||||||
|
padding:1.795%;
|
||||||
|
width:65%;
|
||||||
|
z-index:1;
|
||||||
|
|
||||||
|
background-color:#FFFFFF;
|
||||||
|
border:1px solid #CCCCCC;
|
||||||
|
-moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7);
|
||||||
|
-moz-border-radius:7px;
|
||||||
|
}
|
||||||
|
.entity_send-a-message #form_notice legend {
|
||||||
|
display:block;
|
||||||
|
margin-bottom:11px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.entity_send-a-message #form_notice label,
|
||||||
|
.entity_send-a-message #form_notice select {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
.entity_send-a-message input.submit {
|
||||||
|
text-align:center;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.entity_tags ul {
|
.entity_tags ul {
|
||||||
list-style-type:none;
|
list-style-type:none;
|
||||||
display:inline;
|
display:inline;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user