thecodeholic / lobipanel

jQuery plugin for bootstrap panels. It extends panels with several common and useful functions.
MIT License
168 stars 75 forks source link

Fullscren Input and select focus not working #45

Closed emrekara37 closed 2 years ago

emrekara37 commented 7 years ago

https://i.hizliresim.com/pGg0Mr.jpg normal is ok but fullscreen https://i.hizliresim.com/NOqp8a.jpg

thiagomdo1 commented 2 years ago

I removed me.isOnFullScreen condition from _onPanelClick function, in lobipanel.js file, and it worked:

var _onPanelClick = function(){
    me.$el.on('mousedown.lobiPanel', function(){
        if (me.isPinned() ||
                me.isMinimized() ||
                me.isOnFullScreen() // <------ remove this condition
        ) { 
            return false;
        }
        me.bringToFront();
    });
};