wersja skryptu MyBB: 1.8
Cos chyba jest z moim javascript bo nie moge np zglosic postu do moderacji. Rowniez przy odpowiadaniu z cytowaniem nie ma cytowanego tekstu. Obecnie uzywam starego szablonu grafifor ale ten sam problem jest jak przelacze sie na szablon standardowy. Rowniez edytor tekstu w obu wariantach jest niedostepny
Kod w headerinclude
Cos chyba jest z moim javascript bo nie moge np zglosic postu do moderacji. Rowniez przy odpowiadaniu z cytowaniem nie ma cytowanego tekstu. Obecnie uzywam starego szablonu grafifor ale ten sam problem jest jak przelacze sie na szablon standardowy. Rowniez edytor tekstu w obu wariantach jest niedostepny
Kod w headerinclude
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.plugins.min.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/general.js?ver=1800"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">jQuery.noConflict();</script>
{$stylesheets}
<!-- UNREADPOSTS_CSS -->
<script type="text/javascript">
<!--
var cookieDomain = "{$mybb->settings['cookiedomain']}";
var cookiePath = "{$mybb->settings['cookiepath']}";
var cookiePrefix = "{$mybb->settings['cookieprefix']}";
var deleteevent_confirm = "{$lang->deleteevent_confirm}";
var removeattach_confirm = "{$lang->removeattach_confirm}";
var loading_text = '{$lang->ajax_loading}';
var saving_changes = '{$lang->saving_changes}';
var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
var my_post_key = "{$mybb->post_code}";
var imagepath = "{$theme['imgdir']}";
// -->
</script>
{$newpmmsg}
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#topnav li").prepend("<span></span>"); //Throws an empty span tag right before the a tag
jQuery("#topnav li").each(function() { //For each list item...
var linkText = jQuery(this).find("a").html(); //Find the text inside of the a tag
jQuery(this).find("span").show().html(linkText); //Add the text in the span tag
});
jQuery("#topnav li").hover(function() { //On hover...
jQuery(this).find("span").stop().animate({
marginTop: "-40" //Find the span tag and move it up 40 pixels
}, 250);
} , function() { //On hover out...
jQuery(this).find("span").stop().animate({
marginTop: "0" //Move the span back to its original state (0px)
}, 250);
});
});
jQuery.noConflict();
</script>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#nicemenu img.arrow").click(function(){
jQuery("span.head_menu").removeClass('active');
submenu = jQuery(this).parent().parent().find("div.sub_menu");
if(submenu.css('display')=="block"){
jQuery(this).parent().removeClass("active");
submenu.hide();
jQuery(this).attr('src','images/GrafiforPL/bg/trojkat_hover.png');
}else{
jQuery(this).parent().addClass("active");
submenu.fadeIn();
jQuery(this).attr('src','images/GrafiforPL/bg/trojkat_select.png');
}
jQuery("div.sub_menu:visible").not(submenu).hide();
jQuery("#nicemenu img.arrow").not(this).attr('src','images/GrafiforPL/bg/trojkat.png');
})
.mouseover(function(){ jQuery(this).attr('src','images/GrafiforPL/bg/trojkat_hover.png'); })
.mouseout(function(){
if(jQuery(this).parent().parent().find("div.sub_menu").css('display')!="block"){
jQuery(this).attr('src','images/GrafiforPL/bg/trojkat.png');
}else{
jQuery(this).attr('src','images/GrafiforPL/bg/trojkat_select.png');
}
});
jQuery("#nicemenu span.head_menu").mouseover(function(){ jQuery(this).addClass('over')})
.mouseout(function(){ jQuery(this).removeClass('over') });
jQuery("#nicemenu div.sub_menu").mouseover(function(){ jQuery(this).fadeIn(); })
.blur(function(){
jQuery(this).hide();
jQuery("span.head_menu").removeClass('active');
});
jQuery(document).click(function(event){
var target = jQuery(event.target);
if (target.parents("#nicemenu").length == 0) {
jQuery("#nicemenu span.head_menu").removeClass('active');
jQuery("#nicemenu div.sub_menu").hide();
jQuery("#nicemenu img.arrow").attr('src','images/GrafiforPL/bg/trojkat.png');
}
});
});
</script>