forked from leftypol/leftypol
bugfix and work with other stylesheets
This commit is contained in:
parent
91e973fd6e
commit
41a3f9be25
2 changed files with 26 additions and 10 deletions
|
@ -11,19 +11,21 @@
|
|||
*
|
||||
*/
|
||||
|
||||
var show_quick_reply = function(){
|
||||
if($('div.banner').length == 0)
|
||||
return;
|
||||
if($('#quick-reply').length != 0)
|
||||
return;
|
||||
|
||||
$('<style type="text/css">\
|
||||
var do_css = function() {
|
||||
$('#quick-reply-css').remove();
|
||||
|
||||
// Find background of reply posts
|
||||
var dummy_reply = $('<div class="post reply"></div>').appendTo($('body'));
|
||||
var reply_background = dummy_reply.css('background');
|
||||
dummy_reply.remove();
|
||||
|
||||
$('<style type="text/css" id="quick-reply-css">\
|
||||
#quick-reply {\
|
||||
position: fixed;\
|
||||
right: 0;\
|
||||
top: 5%;\
|
||||
float: right;\
|
||||
background: #D6DAF0;\
|
||||
background: ' + reply_background + ';\
|
||||
display: block;\
|
||||
padding: 0 0 0 0;\
|
||||
width: 350px;\
|
||||
|
@ -84,6 +86,17 @@ var show_quick_reply = function(){
|
|||
}\
|
||||
</style>').appendTo($('head'));
|
||||
|
||||
console.log('h');
|
||||
};
|
||||
|
||||
var show_quick_reply = function(){
|
||||
if($('div.banner').length == 0)
|
||||
return;
|
||||
if($('#quick-reply').length != 0)
|
||||
return;
|
||||
|
||||
do_css();
|
||||
|
||||
var $postForm = $('form[name="post"]').clone();
|
||||
|
||||
$postForm.clone();
|
||||
|
@ -193,7 +206,7 @@ var show_quick_reply = function(){
|
|||
$postForm.fadeOut(100);
|
||||
else
|
||||
$postForm.fadeIn(100);
|
||||
});
|
||||
}).on('stylesheet', do_css);
|
||||
};
|
||||
|
||||
$(window).on('cite', function(e, id, with_link) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue