Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

MinusBaseline solve flyouts not working

This discussion is related to the MinusBaseline addon.
K17K17 ✭✭✭
edited January 2018 in Vanilla 2.0 - 2.8

Hey :D
Just see that flyouts weren't working correctly.
There is just one addition to to in this:

                //create a selectlist
                select = $('<select/>').css({
                    position: 'absolute',
                    left: 0,
                    opacity: 0
                }).appendTo(flyout);

(in js/custom.js)
Simply add a top: 0 attribute to it:

                //create a selectlist
                select = $('<select/>').css({
                    position: 'absolute',
                    left: 0,
                    top: 0,
                    opacity: 0
                }).appendTo(flyout);

And it works !
(It just because some "select" is placed just below the cog icon, doing this put it over like it must be)

Comments

Sign In or Register to comment.