Webboard

Pełna wersja: Nie działa Edytuj po wgraniu Note Moderator 2.0
Aktualnie przeglądasz uproszczoną wersję forum. Kliknij tutaj, by zobaczyć wersję z pełnym formatowaniem.
Witam wgrałem na forum Note moderator 2.0 i przestała mi działać opcja Edytuj post.. Ktoś coś pomoże przeglądałem jakieś stare tematy ale nic.
Konto testowe?
(13.09.2017, 05:22)Fyeem napisał(a): [ -> ]Konto testowe?
Login test
Hasło tester
Nadaj uprawnienia na to konto testowe, nawet na jeden dział
(13.09.2017, 10:06)Szogi1910 napisał(a): [ -> ]Nadaj uprawnienia na to konto testowe, nawet na jeden dział

Nadane w dziale Gry & zabawy

link do tematu
http://playglobal.pl/Thread-test
(13.09.2017, 12:59)Divir napisał(a): [ -> ]https://community.mybb.com/thread-160142.html

Pomogło ale opcje edycji wyświetla 10000 px niżej niż powinno


@
Naprawiłem wystarczyło dodać ten kod do headerinclude

Kod:
<script>

(function($){
    var current_popup = '';
    var PopupMenu = function(el, close_in_popupmenu)
    {
        var el = $(el);
        var popup = this;
        var popup_menu = $("#" + el.attr('id') + "_popup");
        if(typeof close_in_popupmenu == 'undefined')
        {
            var close_in_popupmenu = true;
        }
        // Opening Popup
        this.open = function(e)
        {
            e.preventDefault();

            if(popup_menu.is(':visible'))
            {
                popup.close();
                return;
            }

            // Setup popup menu
            var offset = el.offset();
            offset.top += el.outerHeight();

            // We only adjust if it goes out of the page (?)
            if((el.offset().left + popup_menu.outerWidth()) > $(window).width())
                var adjust = popup_menu.outerWidth() - el.outerWidth();
            else
                var adjust = 0;

            popup_menu.css({
                position: 'absolute',
            });

            popup_menu.show();

            // Closes the popup if we click outside the button (this doesn't seem to work properly - couldn't find any solutions that actually did - if we click the first item on the menu)
            // Credits: http://stackoverflow.com/questions/1160880/detect-click-outside-element
            $('body, .popup_item').bind('click.close_popup', function(e) {
                if(close_in_popupmenu)
                {
                    if($(e.target).closest("#" + el.attr('id')).length == 0) {
                        popup.close();
                    }
                }
                else
                {
                    if($(e.target).closest("#" + el.attr('id')).length == 0 && $(e.target).closest("#" + el.attr('id') + '_popup').length == 0) {
                        popup.close();
                    }
                }
            });
        }
        this.close = function(e)
        {
            popup_menu.hide();
        }
    }
    $.fn.popupMenu = function(close_in_popupmenu)
    {
        return this.each(function()
        {
            var popup = new PopupMenu(this, close_in_popupmenu);
            $(this).click(popup.open);
        });
    }
})(jQuery);

</script>