mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Fix styles of new message notification
This commit is contained in:
parent
5ead23ae79
commit
54795421fe
1 changed files with 11 additions and 8 deletions
|
|
@ -3,17 +3,20 @@
|
|||
window.xeNotifyMessage = function(text, count){
|
||||
$bar = $('div.message.info');
|
||||
if(!$bar.length) {
|
||||
$bar = $('<div class="message info" />')
|
||||
.hide()
|
||||
.css({
|
||||
'position' : 'absolute',
|
||||
'z-index' : '100',
|
||||
})
|
||||
.prependTo(document.body);
|
||||
$bar = jQuery('<div class="message info"></div>').hide().css({
|
||||
'position' : 'absolute',
|
||||
'opacity' : 0.7,
|
||||
'z-index' : 10000,
|
||||
}).appendTo(document.body);
|
||||
}
|
||||
|
||||
text = text.replace('%d', count);
|
||||
$bar.html('<p><a href="'+current_url.setQuery('module','').setQuery('act','dispCommunicationNewMessage')+'" onclick="popopen(this.href, \'popup\');xeNotifyMessageClose(); return false;">'+text+'</a></p>').height();
|
||||
var link = jQuery('<a></a>');
|
||||
link.attr("href", current_url.setQuery('module','').setQuery('act','dispCommunicationNewMessage'));
|
||||
//link.attr("onclick", "popopen(this.href, 'popup');xeNotifyMessageClose(); return false;");
|
||||
link.text(text);
|
||||
var para = jQuery('<p></p>');
|
||||
para.append(link).appendTo($bar);
|
||||
$bar.show().animate({top:0});
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue