mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 12:32:14 +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){
|
window.xeNotifyMessage = function(text, count){
|
||||||
$bar = $('div.message.info');
|
$bar = $('div.message.info');
|
||||||
if(!$bar.length) {
|
if(!$bar.length) {
|
||||||
$bar = $('<div class="message info" />')
|
$bar = jQuery('<div class="message info"></div>').hide().css({
|
||||||
.hide()
|
|
||||||
.css({
|
|
||||||
'position' : 'absolute',
|
'position' : 'absolute',
|
||||||
'z-index' : '100',
|
'opacity' : 0.7,
|
||||||
})
|
'z-index' : 10000,
|
||||||
.prependTo(document.body);
|
}).appendTo(document.body);
|
||||||
}
|
}
|
||||||
|
|
||||||
text = text.replace('%d', count);
|
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});
|
$bar.show().animate({top:0});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue